-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclass_activity_4.html
More file actions
104 lines (94 loc) · 3.73 KB
/
class_activity_4.html
File metadata and controls
104 lines (94 loc) · 3.73 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
<!--
Create a feedback form with the following requirements:
1- Username
2- Password
3- Email
4- Month
5- Time
6- Drop down
7- Text area
8- File
9- Radio button (male female)
10-Submit
Note: Give a heading to your form
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback Form</title>
<link rel="shortcut icon" href="image/html_favicon/icons8-html-color-32.png" type="image/x-icon">
</head>
<body>
<h1>Class Activity 4: Feedback Form</h1>
<p>Alright, it's feedback time! I want to hear what you think about my projects. Be honest, be kind, and let me know if my HTML skills are on point! 😊💬</p>
<h3>Class Activity Links</h3>
<a href="index.html">Home page</a> |
<a href="class_activity_1.html">Favorite Food</a> |
<a href="class_activity_2.html">Login Form</a> |
<a href="class_activity_3.html">Favorite Book</a> |
<a href="class_activity_4.html">Feedback Form</a> |
<a href="class_activity_5.html">Basic Calculator</a> |
<a href="class_activity_6.html">Html Multimedia</a> |
<a href="class_activity_7.html">Page Replicate</a> |
<a href="class_activity_8.html">Financial Webpage Replication</a> |
<a href="class_activity_9.html">Weekly Planner</a> |
<a href="class_activity_10.html">Weekly Classroom Schedule</a> |
<a href="class_activity_11.html">Revision 1</a> |
<a href="class_activity_12.html">Revision 2</a> |
<h3>Assignment Links</h3>
<a href="assignment_1.html">T-Shirt Signup Form</a> |
<a href="assignment_2.html">Kaduna Electric Form</a> |
<a href="assignment_3.html">Cable TV Packages</a> |
<h3>Project Preview Links</h3>
<a href="https://deliciousbytes.vercel.app/" target="_blank">Delicious Bytes Food Menu</a> |
<br><br>
<!-- I am here to collect feedback -->
<form action="">
<fieldset>
<h3>Feedback Form</h3>
<input type="text" placeholder="username">
<br><br>
<input type="password" placeholder="password">
<br><br>
<input type="email" placeholder="email">
<br><br>
<!-- note - try with input type month -->
<select name="month" id="">
<option value="1">January</option>
<option value="2">February</option>
<option value="3">March</option>
<option value="4">April</option>
<option value="5">May</option>
<option value="6">June</option>
<option value="7">July</option>
<option value="8">August</option>
<option value="9">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
<input type="time">
<br><br>
<select name="" id="">
<option value="">Tea</option>
<option value="">Fruit Juice</option>
<option value="">Yoghurt</option>
</select>
<br><br>
<textarea name="Description" id="" rows="5" cols="50"
placeholder="Enter your description here..."></textarea>
<br><br>
<input type="file" name="gender" id="">
<br><br>
<label> Male
<input type="radio" name="gender" id="" value="male">
</label>
<label> Female<input type="radio" name="gender" id="" value="female"></label>
<br><br>
<button type="submit">Submit</button>
</fieldset>
</form>
</body>
</html>