programming-examples/html/Form/form_checkbox.html

19 lines
472 B
HTML
Raw Normal View History

2019-11-15 12:59:38 +01:00
<!DOCTYPE html>
<html>
<head>
<title>Html5</title>
<meta charset="UTF-8">
</head>
<body>
<form action="">
Your pizza with:<br>
<input type="checkbox" name="n1">Mozzarella<br>
<input type="checkbox" name="n1">Ham<br>
<input type="checkbox" name="n1">Tomato<br>
<input type="checkbox" name="n1">Peppers<br>
<input type="checkbox" name="n1">Mushrooms<br>
<input type="checkbox" name="n1">Black olives<br>
<input type="checkbox" name="n1">Hot sauce<br>
</form>
</body>
</html>