> Online tutorial : HTML checkbox
Showing posts with label HTML checkbox. Show all posts
Showing posts with label HTML checkbox. Show all posts

HTML checkbox

Check Box
It is simplest component which is used particularly whemn we used to make selection of serveral options.
Syntx
<input type='checkbox' name='check' value='value of checkbox'>
Example

<html>
<head>
<title>
HTML checkbox
</title>
</head>
<body>
<form name='form1'>
<input type='checkbox' name='check' value='apple'>
<input type='checkbox' name='check' value='orange'>
</form>
</body>
</html>




Output


Apple