1 changed files with 42 additions and 0 deletions
@ -0,0 +1,42 @@ |
|||
<!DOCTYPE html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="UTF-8"> |
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|||
<title>Formulář</title> |
|||
<style> |
|||
label:hover { |
|||
cursor: pointer; |
|||
} |
|||
</style> |
|||
</head> |
|||
<body> |
|||
<h1>Registrační formulář</h1> |
|||
<form action=""> |
|||
<p> |
|||
<input type="text" name="name" value="" placeholder="e.g. Bob"> |
|||
</p> |
|||
<p> |
|||
<input type="number" name="age" min="1" max="199" placeholder="Your age"> |
|||
</p> |
|||
<p> |
|||
<select name="country"> |
|||
<option value="CZ">Česko</option> |
|||
<option value="SK">Slovensko</option> |
|||
<option value="DE">Německo</option> |
|||
</select> |
|||
</p> |
|||
<p> |
|||
Chci zasílat novinky z: <br> |
|||
<input type="checkbox" name="news" value="1" id="vedtech"> |
|||
<label for="vedtech">Věda a technika</label> <br> |
|||
<input type="checkbox" name="news" value="2" id="eko"> |
|||
<label for="eko">Ekonomika</label> |
|||
</p> |
|||
|
|||
<input type="submit" name="reg" value="Registrovat"> |
|||
<button type="submit">Registrovat 2</button> |
|||
</form> |
|||
</body> |
|||
</html> |
Loading…
Reference in new issue