-
Notifications
You must be signed in to change notification settings - Fork 0
/
critique-feedback.html
82 lines (81 loc) · 2.52 KB
/
critique-feedback.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Critique Web Application</title>
<meta charset="utf-8" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="jsFiles/index.js"></script>
<script src="jsFiles/critique-feedback.js"></script>
<link rel="stylesheet" href="cssFiles/critique-feedback.css" />
<link rel="stylesheet" href="cssFiles/critique-header.css" />
<link rel="stylesheet" href="cssFiles/critique-main.css" />
</head>
<body>
<div class="bg2">
<div id="header"></div>
<div class="centered">
<h1 class="inblock">
Student Feedback Form <br />
<span>Fill out the details</span>
</h1>
<form>
<p>
<label>Respondent</label><br />
<input type="text" name="first_name" class="inp" />
</p>
<p>
<label>Subject</label><br />
<select name="Subject" id="Subject" class="inp">
<option disabled="disabled" selected="selected"
>Click Here For Dropdown</option
>
<option value="OS">Operating Systems</option>
<option value="SSD">Software Systems Design</option>
<option value="CN">Computer Networks</option>
<option value="SMAI">Statistical Methods In AI</option>
</select>
</p>
<p id="result"></p>
<p>
<label>Review</label>
<br />
<textarea
id="comment"
name="w3review"
rows="4"
cols="50"
class="inp"
>
</textarea>
<br />
</p>
<p id="imge">Rating<br /></p>
<p>
<button id="sub" type="button" class="btn">Submit >></button>
</p>
</form>
</div>
<span class="myblock"></span>
<div class="card">
<div class="scrolling-wrapper">
<h5>Ram</h5>
<h3>Operating System</h3>
<pre>Prof - OSer1
Rating - 5<br>Suject thaught with real time examples
*Assignments huge
*Too many topics final exam</pre>
</div>
</div>
<div class="card">
<div class="scrolling-wrapper">
<h5>RP</h5>
<h3>SMAI</h3>
<pre>Prof - SMAIer1
Rating - 3<br>Suject thaught with real time examples
*Assignments are too much to handle
*Too many topics for final exam</pre>
</div>
</div>
</div>
</body>
</html>