-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExtra_form.html
55 lines (50 loc) · 1.58 KB
/
Extra_form.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
<!DOCTYPE html>
<html>
<head>
<title>
Extra Form
</title>
</head>
<body>
<form>
<h1 align="center" ><b>My Feedback Formn</b></h1>
<ul>
<li>Name :<input type="text" name=""></li>
<li>Email:<input type="text" name=""></li>
<li>Password :<input type="number" name=""></li>
<li> Please check all the emotions that apply to you :
<ul type="disk">
<li>Angry :<input type="checkbox" name=""></li>
<li>Sad :<input type="checkbox" name=""></li>
<li>Happy :<input type="checkbox" name=""></li>
<li>Ambivalent :<input type="checkbox" name=""></li>
</ul>
</ul>
<ul>
<li>
How satisfied were you with our service ?
</li>
<ul type="disk">
<li>Very satisfied :<input type="radio" name="a" value="a"></li>
<li>satisfied :<input type="radio" name="a" value="a"></li>
<li>Didn't care :<input type="radio" name="a" value="a"></li>
<li>Dissatisfied :<input type="radio" name="a" value="a"></li>
<li>Very Dissatisfied<input type="radio" name="a" value="a"></li>
</ul>
<li>Further comments :<textarea></textarea></li>
<li>Bio photo :<input type="text" name=""><input type="file" name=""></li>
<li>Location Visited :
<select>
<option selected="">
Select location
</option>
<option>
NYC
</option>
</select>
</li>
<li><input type="submit" name="" value="Submit"></li>
</ul>
</form>
</body>
</html>