-->

HTML page to create check box to choose multiple data between given options.

Let's take following example.
-------------------------------------------------------------------------------------------------
<html><!--starting tag of html-->
<head><!--used for meta tag-->
<title><!--used for title of page-->
form concept
</title>
</head>
<body><!--is container-->
form <br>
<form><!--form tag-->
Physics:<input type="checkbox" name="c1"><br>
chemistry:<input type="checkbox" name="c2">
<!--it creats rectangular box which can be clicked
-->
</form>
</body>
</html>

No comments:

Post a Comment