-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp25Input.html
More file actions
26 lines (23 loc) · 1.08 KB
/
exp25Input.html
File metadata and controls
26 lines (23 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- example on checkbox and radio buttons input fields tag-->
<DOCTYPE html>
<html lang="en">
<head>
<title> my 25th web page</title>
<link rel="icon" href="id.png"/>
</head>
<body>
<h3> demo on checkbox & radio buttons</h3>
<label>JOURNEY CLASS:<label><br>
<input type="checkbox" value="1st" checked><label>AC first class</label><br>
<input type="checkbox" value="2nd"><label>AC second class</label><br>
<input type="checkbox" value="3rd"><label>AC third class</label><br>
<input type="checkbox" value="sl"><label>Sleeper class</label><br>
<input type="checkbox" value="cc"><label>Chair class</label><br>
<br>
<label>HTML was introduced in _____year?</label><br>
<input type="radio" name="q1" value="1990"><label>1990</label>
<input type="radio" name="q1" value="1991"><label>1991</label>
<input type="radio" name="q1" value="1993"><label>1993</label>
<input type="radio" name="q1" value="1996"><label>1996</label>
</body>
</html>