forked from bharathbolla/Content-Mapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ASAG.html
31 lines (28 loc) · 1.04 KB
/
ASAG.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
<!DOCTYPE html>
<html>
<head>
<title>Short answer grading</title>
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="split left_part">
<h1 class="center">Hello user</h1>
<div style="height: 100%;">
<form style="margin:auto;">
<h2 class="center">Question</h2>
<textarea rows="2" columns="50" name="Question" style="width: 99%;font-size: 150%"></textarea>
<h2 class="center">Reference Answer</h2>
<textarea rows="2" columns="50" name="Reference Answer" style="width: 99%;font-size: 150%;"></textarea>
<h2 class="center">Student Answers</h2>
<textarea rows="5" columns="50" name="Student Answer" style="width: 99%;font-size: 150%;"></textarea>
<div style="box-sizing: border-box;">
<button style="padding: 10px 20px; border-radius: 4px;display:block;margin:auto auto;cursor:pointer;font-size: 100%">Submit</button>
</div>
</form>
</div>
</div>
<div class="split right_part">
<h1 style="text-align: center;">Grades</h1>
</div>
</body>
</html>