forked from Abhay-N-J/NotO
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstudent.html
128 lines (123 loc) · 4.49 KB
/
student.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
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
<!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;
display: block;
margin-right: auto;
margin-left: auto;
}
div.center{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
table.center{
display: block;
margin-left: auto;
margin-right: auto;
text-align: center;
}
</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;">
<table style="margin-left:auto;margin-right:auto">
<tr>
<td> </td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
<td>5</td>
</tr>
<tr>
<td>Option A</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option B</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option C</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option D</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option E</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option F</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
<tr>
<td>Option G</td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
<td><input type="radio"></td>
</tr>
</table>
<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>