Saturday, 14 September 2013

Checkboxes


I have a bike
I have a car
copy the below code for above result.

<!DOCTYPE html>
<html>
<body>

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

</body>
</html>

No comments :

Post a Comment