-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCourse-evaluation.html
More file actions
160 lines (101 loc) · 5.19 KB
/
Copy pathCourse-evaluation.html
File metadata and controls
160 lines (101 loc) · 5.19 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
158
159
160
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Course evaluation </title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="enrollment-evaluation.css">
<link rel="stylesheet" href="basic.css">
<script src="dark.js"></script>
</head>
<body>
<header>
<nav class="navbar">
<ul class="navbar-menu" id="navbarMenu">
<li><a href="index.html"><img src="images/logo.png" alt="Logo" id="logo"></a></li>
<li><a href="Courses.html" title="the courses that we offer">Courses</a></li>
<li><a href="Tutor1.html" title="tutors that work at the center">Tutors</a></li>
<li><a href="parentDashboard.html" title="dashboard for parents to monitor and manage their kids ">Parents dashboard</a></li>
<li><a href="administrator-dashboard.html" title="dashboard for adminstrator to manage the center">Administrator dashboard</a></li>
</ul>
</nav>
<div class="pageheader">
<br>
<h1 id="pageTitle">Course evaluation</h1>
<br>
</div>
<ul id="breadCrumbs">
<li><a href="index.html">Homepage</a></li>
<li><a href="parentDashboard.html">Parent's dashboard</a></li>
<li><a href="Course-evaluation.html">Course evaluation </a></li>
</ul>
</header>
<main>
<form id = "Form" action = "#" method = "post" >
<label class="label" for = "dropdown"> Select the course you want to rate: <br> </label>
<select name="Course's rate" id="dropdown" required>
<option disabled selected>Select a course</option>
<option value="Robotics">Robotics</option>
<option value="Python Programming ">Python Programming</option>
<option value="Web Development">Web Development</option>
<option value="WDF">Website Design Fundamentals</option>
<option value="Games Development">Games Development</option>
<option value="Scratch Programming ">Scratch Programming</option>
<option value="Problem Solving"> Problem Solving </option>
<option value="Programming Fundamentals">Programming Fundamentals</option>
<option value="Game Design">Game Design</option>
<option value="MAD">Mobile App Development </option>
<option value="Animation Design">Animation Design</option>
<option value="Electronics">Electronics</option>
</select>
<label id="rate-label" class="label"> <br><br>Tap to rate the course: </label>
<div class="rate">
<input type="radio" id="star5" name="rate2" value="5" >
<label for="star5" title="text">5 stars</label>
<input type="radio" id="star4" name="rate2" value="4" >
<label for="star4" title="text">4 stars</label>
<input type="radio" id="star3" name="rate2" value="3" >
<label for="star3" title="text">3 stars</label>
<input type="radio" id="star2" name="rate2" value="2" >
<label for="star2" title="text">2 stars</label>
<input type="radio" id="star1" name="rate2" value="1" >
<label for="star1" title="text">1 star</label>
</div>
<label class="label" for = "textarea"> <br> Write your feedback: <br> </label>
<br>
<textarea name="feedback" id="textarea" placeholder="type your feedback here please"></textarea>
<input id="sub" type="submit" value="Submit" >
<script src="scriptForEval.js"></script>
</form>
<div id="buttons">
<div class="button-container">
<a href="Register-a-new-child.html"> Register a new child
</a>
</div>
<div class="button-container">
<a href="Course-enrollment.html"> Course enrollment
</a>
</div>
<div class="button-container">
<a href="Course-evaluation.html"> Course evaluation
</a>
</div>
</div>
</main>
<footer id="dark-footer">
<p id="footer1">© 2022, CodeCubs</p>
<p id="footer2">
CodeCubs <br>
4254 North Alia Avenue <br>
Riyadh, AZ 85251 KSU <br>
110.405.2734 tel <br>
CodeCubs@mail.com
</p>
<div class="social-media-icons">
<a href=""><img src="images/instegram.png" alt="instagram"></a>
<a href=""><img src="images/facebook.png" alt="facebook"></a>
<a href=""><img src="images/x.png" alt="twitter"></a>
</div>
</footer>
</body>
</html>