-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheckbox.html
More file actions
23 lines (23 loc) · 834 Bytes
/
checkbox.html
File metadata and controls
23 lines (23 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html>
<head>
<title>Checkboxes in Form</title>
</head>
<body>
<h1>Check box in Form</h1>
<f>
<p>Name:<br>
<input type="text" name="name" size="15" maxlength="20">
</p>
<p>My Hobbies Are:<br>
<input type="checkbox" name="Hobbies[]" value="photography">photography
<input type="checkbox" name="Hobbies[]" value="video gaming">video gaming
<input type="checkbox" name="Hobbies[]" value="Drawing">Drawing
<input type="checkbox" name="Hobbies[]" value="Dance">Dance
<input type="checkbox" name="Hobbies[]" value="Basketball">Basketball
</p>
<p>
<input type="submit" name="submit" value="send"><br>
</p>
</form>
</body>
</html>