-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed2.html
More file actions
74 lines (37 loc) · 1.15 KB
/
feed2.html
File metadata and controls
74 lines (37 loc) · 1.15 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
<!doctype html>
<html>
<head>
<title>Feedback Form 2</title>
<link rel="stylesheet" type="text/css" href="feed1.css">
</head>
<body>
<h1> WELCOME TO THIS SELF DESIGNED FEEDBACK FORM</h1><br>
<p class="p1"> Please fill up the form as per given instructions</p>
<br><br>
<fieldset>
<legend>DETAILS</legend><br>
<form action="" method="">
<label for="first">First Name:</label>
<input type="text" id="first" name="">
<label for="sec">Second Name:</label>
<input type="text" id="sec" name="">
<p class="p2">Select your Gender  </p>
<select>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Others">Others</option>
</select><br><br>
Date Of Birth:<br><br>
<form><input type="date" name="D.O.B">
<br>
</form>
</fieldset><br><br>
<fieldset>
<legend>SUGGESTION BOX </legend>
Feedback:<br><br>
<textarea rows="25" cols="60"></textarea>
</fieldset>
<br><br><b>      THANKS A LOT FOR FILLING UP THIS FORM!</b><br><br>
       <input type="submit" value="Submit Feedback">
<br><br><br></form></body>
</html>