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

26 lines
991 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML checkboxes and radio buttons</title>
</head>
<body>
<form method="post" action="" >
<fieldset>
<legend>Hobbies</legend>
<input type="checkbox" name="hobby" value="sports" id="sport">
<label for="sport">Sports</label>
<input type="checkbox" name="hobby" value="music" id="music">
<label for="music">Music</label>
<input type="checkbox" name="hobby" value="reading" id="read">
<label for="read">Reading</label>
</fieldset>
<fieldset>
<legend>Gender</legend>
<input type="radio" name="gender" value="male" id="male">
<label for="male">Male</label>
<input type="radio" name="gender" value="female" id="female">
<label for="female">Female</label>
</fieldset>
</form>
</body>
</html>