29 lines
735 B
HTML
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> |