<input type=”checkbox”> specifies a checkbox, enabling the user to select zero or more options from a finite set of choices.
Example
<form> <input type=”checkbox” id=”vehicle1″ name=”vehicle1″ value=”Bike”> <label for=”vehicle1″> I have a bike</label><br> <input type=”checkbox” id=”vehicle2″ name=”vehicle2″ value=”Car”> <label for=”vehicle2″> I have a car</label><br> <input type=”checkbox” id=”vehicle3″ name=”vehicle3″ value=”Boat”> <label for=”vehicle3″> I have a boat</label> </form> |
<input type=”button”> specifies a button element.
Example
<input type=”button” onclick=”alert(‘Hello World!’)” value=”Click Me!”> |