-
Notifications
You must be signed in to change notification settings - Fork 0
/
submit.html
40 lines (40 loc) · 2.23 KB
/
submit.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex justify-center w-screen h-screen main bg-gradient-to-r from-blue-500 to-red-500">
<div class="flex flex-col w-8/12 mt-20 bg-teal-100 h-2/6">
<div class="m-3 font-serif text-lg text-center submittitle">Submit your test</div>
<div class="flex flex-row items-center justify-around heading ">
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">Section</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">No. of Question</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">Answered</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">Not answered</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">Marked For review</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-teal-400">Not visited</div>
</div>
<div class="flex flex-row items-center justify-around heading ">
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">Test</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">20</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">0</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">20</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">0</div>
<div class="w-full pt-1 pb-1 m-1 text-center text-white bg-slate-400">20</div>
</div>
<div class="h-24 border-b-[1px] border-black border-solid blankSpace"></div>
<div class="flex justify-end buttons ">
<div class="flex items-center justify-center w-20 h-8 m-3 bg-teal-500">Close</div>
<div class= "flex items-center justify-center w-20 h-8 m-3 text-center bg-teal-500">Submit</div>
</div>
</div>
</div>
</body>
<script>
</script>
</html>