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.

29 lines
735 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
</head>
<body>
<form action="">
<fieldset>
<legend>Our starters</legend>
<input type="checkbox" name="s1">Chikenito's<br>
<input type="checkbox" name="s2">Season Salads<br>
<input type="checkbox" name="s3">Buffalo wings<br>
</fieldset>
<fieldset>
<legend>Our pizzas</legend>
<input type="checkbox" name="p1">Classic<br>
<input type="checkbox" name="p2">Countrywoman<br>
<input type="checkbox" name="p3">Diabolic<br>
</fieldset>
<fieldset>
<legend>Our desserts</legend>
<input type="checkbox" name="d1">Ice creams<br>
<input type="checkbox" name="d2">Cookies<br>
<input type="checkbox" name="d3">Chocolate cake<br>
</fieldset>
</form>
</body>
</html>