Ad Code

Check Box form for Website

Advertisements
Create Check Box form for Website using Input Tag,name attribute,value,etc.
Project Code:
<html>
<head>
<title>Example of Check box Form
</title>
</head>
<body>
<h2>Project of Check box Form
</h2>
Select Your Subject:
<form>
English<input type="checkbox"name="status"Value="E"><br>
Math<input type="checkbox"name="status"Value="M"><br>
Computer<input type="checkbox"name="status"Value="C"><br>
History<input type="checkbox"name="status"Value="H"><br>
</form>
</body>
</html>
Output
Check Box form for Website

Download Link
Advertisements