-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
42 lines (38 loc) · 1.19 KB
/
test.html
File metadata and controls
42 lines (38 loc) · 1.19 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Test</title>
<link rel="stylesheet" href="test.css">
</head>
<body>
<div id="pagewrap">
<header>
<h1>Interactive Test</h1>
</header>
<section id="nav">
<h2 class = "nav-question"></h2>
<button class = "button">Run Test</button>
</section>
<section id="middle">
<h2 class ="questions-heading">Test Questions</h2>
</section>
<aside id="sidebar">
<h2 class ="instructions-heading">GENERAL INSTRUCTIONS</h2>
<ol id = "instructions">
<li>Total of 5 questions are there in this test</li>
<li>You can see the attempted questions in the nav section</li>
<li>Read the questions Carefully</li>
<li>Click on the desired option to navigate to the next question</li>
<li>Show scores will reveal the solutions for the questions and total score</li>
</ol>
</aside>
<footer>
<p>@2017 - Interactive test</p>
</footer>
</div>
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js'></script>
<script src = "test.js"></script>
</body>
</html>