Form checkbox with name : Form CheckBox « Form « HTML / CSS






Form checkbox with name

<html>
<body>

<form>
I have a bike: 
<input type="checkbox" name="Bike">
<br>
I have a car: 
<input type="checkbox" name="Car">
</form>

</body>
</html>



           
       








Related examples in the same category

1.Check Box Example
2.Form with action script and checkbox
3.'checked' defines whether a checkbox or radio button is selected or not