forked from Abhay-N-J/NotO
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudent_feed.html
95 lines (90 loc) · 4.5 KB
/
student_feed.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
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<style>
html{
color:aliceblue
}
body{
background-image:url('background.jpg');
background-image: linear-gradient(rgba(4,9,30,0.7), rgba(4,9,30,0.7)),url("background.jpg");
background-position: center;
background-size: cover;
font-size: larger;
margin-left: 20px;
}
h1{
text-align : center;
}
div.options{
margin-left: 68px;
}
div.center{
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<title>Student Feedback</title>
<h1>STUDENT FEEDBACK</h1>
</head>
<body >
<div class="center">
<br><br><br>
<form action="" method="get" style="border:aliceblue; border-width:3px; border-style:inset; margin-right: 300px;margin-left: 300px;">
<div style="display : inline">
<div class="options">   1  2   3   4  5</div>
<label for="opA">Option A</label>
<input type="radio" id="opA" name="val1" value="1">
<input type="radio" id="opA" name="val1" value="2">
<input type="radio" id="opA" name="val1" value="3">
<input type="radio" id="opA" name="val1" value="4">
<input type="radio" id="opA" name="val1" value="5">
<br>
<label for="opB">Option B</label>
<input type="radio" id="opB" name="val2" value="1">
<input type="radio" id="opB" name="val2" value="2">
<input type="radio" id="opB" name="val2" value="3">
<input type="radio" id="opB" name="val2" value="4">
<input type="radio" id="opB" name="val2" value="5">
<br>
<label for="opC">Option C</label>
<input type="radio" id="opC" name="val3" value="1">
<input type="radio" id="opC" name="val3" value="2">
<input type="radio" id="opC" name="val3" value="3">
<input type="radio" id="opC" name="val3" value="4">
<input type="radio" id="opC" name="val3" value="5">
<br>
<label for="opD">Option D</label>
<input type="radio" id="opD" name="val4" value="1">
<input type="radio" id="opD" name="val4" value="2">
<input type="radio" id="opD" name="val4" value="3">
<input type="radio" id="opD" name="val4" value="4">
<input type="radio" id="opD" name="val4" value="5">
<br>
<label for="opE">Option E</label>
<input type="radio" id="opE" name="val5" value="1">
<input type="radio" id="opE" name="val5" value="2">
<input type="radio" id="opE" name="val5" value="3">
<input type="radio" id="opE" name="val5" value="4">
<input type="radio" id="opE" name="val5" value="5">
<br>
<label for="opF">Option F</label>
<input type="radio" id="opF" name="val6" value="1">
<input type="radio" id="opF" name="val6" value="2">
<input type="radio" id="opF" name="val6" value="3">
<input type="radio" id="opF" name="val6" value="4">
<input type="radio" id="opF" name="val6" value="5">
<p style="font-size: 10px;">        1:poor  5:amazing</p>
<label for="prob">Any other problems:</label><br>
<textarea cols="40" rows="3" type="text" id="prob" name="prob" ></textarea>
<br><br>
<label for="que">Any other queries, please type in:</label><br>
<textarea cols="40" rows="3" type="text" id="que" name="que"></textarea>
</div>
<br><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>