You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.3 KiB

<!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>