programming-examples/html/_Basics/Grouping similar form fields.html
2019-11-15 12:59:38 +01:00

17 lines
551 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML fieldset tag</title>
</head>
<body>
<form action="http://www.example.com/" method="post">
<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>