Html Checkbox tag
Advertisements
Checkbox Tag in HTML
Checkbox are used for select multiple option from list of given options.
Example
<html> <head> <form> Language Known:<br> <input type="checkbox" id="hindi" name="hindi" value="hindi"/> <label for="hindi">HIndi</label> <input type="checkbox" id="english" name="english" value="english"/> <label for="english">English</label> <input type="checkbox" id="french" name="french" value="french"/> <label for="french">French</label> <form> </body> </html>
Result
Google Advertisment