-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
207 lines (193 loc) · 5.33 KB
/
index.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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form action="">
<fieldset>
<legend>Login details</legend>
<label for="">
Name:
<input type="text" name="" id="">
</label>
<br>
<br>
<label for="">
Email:
<input type="Email" name="" id="">
</label>
<br>
<br>
<label for="">
Password:
<input type="password" name="" id="">
</label>
</fieldset>
<fieldset>
<legend>Your feedback</legend>
<center>Please check all the emotions that apply to you:
<br>
<label for="a">
Angry <input type="checkbox" name="Angry" id="a">
</label>
<br>
<label for="b">
Sad <input type="checkbox" name="Sad" id="b">
</label>
<br>
<label for="c">
Happy <input type="checkbox" name="Happy" id="c">
</label>
<br>
<label for="d">
Ambivalent <input type="checkbox" name="Ambivalent" id="d">
</label>
<br>
<p>How satisfied were you with our service?</p>
<label for="e">
Very satisfied <input type="radio" name="Very satisfied " id="e">
</label>
</center>
</fieldset>
<br>
<br>
<br>
<h1>User Registration Form</h1>
<fieldset>
<legend>Personal Information</legend>
<label for="">
Name:
<input type="text" name="" id="">
</label>
<br>
<br>
<label for="">
Email Address:
<input type="email" name="" id="">
</label>
<br>
<br>
<label for="">
Password:
<input type="password" name="" id="">
</label>
<br>
<br>
<label for="">
Confirm Password:
<input type="password" name="" id="">
</label>
</fieldset>
<br>
<fieldset>
<legend>Address Details</legend>
<label for="">
Adress line one:
<input type="text" name="" id="">
</label>
<br>
<br>
<label for="">
Address Line two:
<input type="text" name="" id="">
</label>
<br>
<br>
<label for="">
Town / City:
<input type="text" name="" id="">
</label>
<br>
<br>
<label for="">
Zip / Post code:
<input type="text" name="" id="">
</label>
</fieldset>
<br>
<button>Sign up!</button>
<br>
<br>
<br>
<br>
<fieldset>
<legend>Login</legend>
<label for="">
Username* <br>
<input type="text" name="" id="" required>
</label>
<br>
<br>
<label for="">
Password* <br>
<input type="text" name="" id="" required>
</label>
</fieldset>
<br>
<fieldset>
<legend>Gender*</legend>
<label for="">
Male<input type="radio" name="Male" id="">
Female<input type="radio" name="Femle" id="">
</label>
</fieldset>
<br>
<fieldset>
<legend>Programming Skill</legend>
<input type="checkbox" name="" id="">Java <br>
<input type="checkbox" name="" id="">C++ <br>
<input type="checkbox" name="" id="">C#
</fieldset>
<br>
<fieldset>
<legend>Fruit</legend>
Choose a fruit:
<select name="" id="">
<option value="Banana">Banana</option>
<option value="Apple">Apple</option>
<option value="Strawberry">Strawberry</option>
<option value="Orange">Orange</option>
</select>
</fieldset>
<br>
<textarea name="" id="" cols="40" rows="10">Enter your comment here</textarea>
<br>
<button>SEND</button>
<button>RESET</button>
<br>
<br>
<br>
<br>
<fieldset>
<legend>The First Section</legend>
<br>
<fieldset>
<legend>The First Subsection</legend>
field 1 <input type="text" name="" id="">
</fieldset>
<br>
field 1 <input type="text" name="" id="">
</fieldset>
<br>
<fieldset>
<legend>Section II</legend>
<br>
<fieldset>
<legend>Section II-A</legend>
field 1 <input type="text" name="" id="">
</fieldset>
<br>
<fieldset>
<legend>Section II-B</legend>
field 1 <input type="text" name="" id="">
</fieldset>
</fieldset>
<button>Go! Go! Go!</button>
</form>
<p>Rimsha Altaf <br>
Roll No. 7615</p>
</body>
</html>