forked from shwetaatgit/hacktober1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile.html
More file actions
46 lines (42 loc) · 1.47 KB
/
file.html
File metadata and controls
46 lines (42 loc) · 1.47 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head><title>Forms</title></head>
<body>
<h1>Forms</h1>
<form>
<fieldset>
<legend>Profile Info</legend>
<label>Your Name</label>
<input type="text" placeholder="Enter your name">
<br>
<label>Your email</label>
<input type="email" placeholder="your@email.com">
<br>
<label>Password</label>
<input type="password">
<br><br>
<label>Gender</label><br>
<input type="radio" name="gender">Female<br>
<input type="radio" name="gender">Male
<br><br>
<label>Type of computer</label><br>
<input type="checkbox">I have a laptop<br>
<input type="checkbox">I have a desktop
<br><br>
<label>Age</label>
<select>
<option>0-20</option>
<option>20-40</option>
<option>40-60</option>
<option>60+</option>
</select>
<br><br>
<label>Message</label><br>
<textarea rows="10" cols="80"></textarea>
<br><br>
<input type="submit" value="Save my info">
<input type="reset" value="clear that info">
</fieldset>
</form>
</body>
</html>