check checkbox in html code example
Example 1: commande checkbox html
<!doctype html>
<html>
<body>
<input type="checkbox">
<input type="radio">
</body>
</html>
Example 2: checkbox value
<input type="checkbox" name="vehicle1" value="Bike">
The checkbox value is 'Bike'.