-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforms.html
41 lines (41 loc) · 1.02 KB
/
forms.html
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!doctype html>
<html>
<head>
<title>FORM</title>
</head>
<body>
<form method="POST" action="">
<h1>This is a Sign in Form</h1>
<br/>
<label>Username</label>
<br />
<input type="text" value="" placeholder="Enter user name" />
<br/>
<label>Password</label>
<br/>
<input type="password" value="" placeholder="Enter Password" />
<br />
<label>Gender</label>
<input type="radio" checked value="male" name="gender" />Male
<input type="radio" value="female" name="gender" />Female
<br />
<label>Subjects</label>
<input type="checkbox" checked value="maths" / >Maths
<input type="checkbox" checked value="Physics" / >Physics
<input type="checkbox" value="Chemistry" / >Chemistry
<br/>
<label>City</label>
<select>
<option>Hyd</option>
<option>Delhi</option>
<option>Chennai</option>
<option>Banglore</option>
</select>
<br />
<textarea rows="5"></textarea>
<br/>
<input type="button" value="Clear" />
<button>Clear</button>
</form>
</body>
</html>