-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforms.html
More file actions
157 lines (157 loc) · 4.87 KB
/
forms.html
File metadata and controls
157 lines (157 loc) · 4.87 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="shortcut icon"
href="Assets/user_info_man_male-512.webp"
type="image/x-icon"
/>
<title>Personal Info</title>
</head>
<body>
<header>
<h1>FORMS</h1>
</header>
<hr />
<main>
<form>
<fieldset>
<legend><strong>Personal Info</strong></legend>
<p>
<label for="First Name">First Name</label>
<input
type="text"
name="First name"
id="First Name"
placeholder="Enter Your First Name"
required
/>
</p>
<p>
<label for="last Name">last Name</label>
<input
type="text"
name="First name"
id="last Name"
placeholder="Enter Your last Name"
required
/>
</p>
<p>
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="Enter Your Mail Id"
required
/>
</p>
<p>
<label for="phone no.">Phone Number</label>
<input
type="tel"
name="phone"
id="phone no."
placeholder="Enter Your Phone Number"
required
/>
</p>
<p>
<label for="dob">Date Of Birth</label>
<input
type="date"
name="dob"
id="dob"
placeholder="Enter Your Date OF Birth"
required
/>
</p>
<p>
<label for="gender">Gender</label>
<input type="radio" name="gender" id="male" value="male" />
<label for="male">Male</label>
<input type="radio" name="gender" id="female" value="female" />
<label for="female">Female</label>
</p>
</fieldset>
<fieldset>
<legend><strong>Suggested Food</strong></legend>
<p>
<label for="food">Dishes</label>
<br />
<br />
<label for="food">BreakFast</label>
<select name="food" id="food">
<option value="Idily">Idily</option>
<option value="dosai">Dosai</option>
<option value="Poori">Poori</option>
<option value="Pongal">Pongal</option>
</select>
<label for="food">Lunch</label>
<select name="food" id="food">
<option value="Briyani">Biriyani</option>
<option value="Meals">Meals</option>
<option value="Fried Rice">Fried Rice</option>
<option value="variety Rice">Variety Rice</option>
</select>
<label for="food">Dinner</label>
<select name="food" id="food">
<option value="chappathi">Chappathi</option>
<option value="Butter Naan">Butter Naan</option>
<option value="Noodels">Noodels</option>
<option value="Parota">Parota</option>
</select>
</p>
</fieldset>
<fieldset>
<legend><strong>Favourite Sports</strong></legend>
<p>
<label for="sport">Favourite Game</label>
<input
type="text"
name="sport"
id="sport"
placeholder="Enter Your Favourite Sport"
list="Sport-list"
/>
<datalist id="Sport-list">
<option value="cricket">cricket</option>
<option value="Football">Football</option>
<option value="Basket Ball">Basket Ball</option>
</datalist>
</p>
</fieldset>
<fieldset>
<legend><strong>Skills</strong></legend>
<p>
<label for="JS">JS</label>
<input type="checkbox" name="Skills" id="JS" value="JS" />
</p>
<p>
<label for="CSS">CSS</label>
<input type="checkbox" name="Skills" id="CSS" value="CSS" />
</p>
<p>
<label for="HTML">HTML</label>
<input type="checkbox" name="Skills" id="HTML" value="HTML" />
</p>
</fieldset>
<br>
<button type="submit">Submit</button>
<button type="reset">Reset</button>
</form>
</main>
<footer>
<hr />
<marquee direction="right">
< < <<mark><strong> © AKSHAY </strong></mark>>>>
</marquee>
<br />
<a href="#" target="_top"><button>Back To Top</button></a>
<a href="index.html" target="_self"><button>Previous Page</button></a>
</footer>
</body>
</html>