-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmockResult.html
56 lines (42 loc) · 1.93 KB
/
mockResult.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
<!DOCTYPE html>
<html>
<head>
<title>Results: Test</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Required JS scripts -->
<!-- Jquery -->
<script src="jquery.js"></script>
<!-- Bootstrap -->
<link href="bootflat/bootstrap/bootstrap.min.css" rel="stylesheet" media="screen">
<link href="bootflat/css/font-awesome.min.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat-extensions.css" rel="stylesheet" media="screen">
<link href="bootflat/css/bootflat-square.css" rel="stylesheet" media="screen">
<script src="js/index.js"></script>
<script src="js/results.js"></script>
<!-- Required CSS Scripts -->
<link rel="stylesheet" type="text/css" href="css/index.css">
</head>
<body onload="allEvents();loadResults();">
<div id="header"></div>
<div id="zabody">
<div class="zacontainer">
<!--place your stuff here--><center>
<h2 id="name">Kaushal, your test results... </h2><br></id>
<span class="alert alert-info alert-dismissable">
<strong id="total"> Your score in the test: 160/195</strong>
</span>
<br><br><br>
<h3>Question wise split of marks</h3>
<ul class="list-group">
<li class="list-group-item"><span id="mcq" class="badge badge-primary">70/80</span>Multiple Choice Questions</li>
<li class="list-group-item"><span id="dq" class="badge badge-primary">55/80</span>Descriptive Questions</li>
<li class="list-group-item"><span id="ddq" class="badge badge-primary">35/35</span>Descriptive Questions with Diagrams</li>
</ul>
</div>
</div>
<div id="footer"></div>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootflat/js/bootstrap.min.js"></script>
</body>
</html>