-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.html
74 lines (73 loc) · 2.77 KB
/
Test.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--- Favicon links --->
<link rel="apple-touch-icon" sizes="180x180" href="static/imgs/Favicon-icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/imgs/Favicon-icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="static/imgs/Favicon-icons/favicon-16x16.png">
<link rel="manifest" href="static/imgs/Favicon-icons/site.webmanifest">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="static/styles/main.css">
<link rel="stylesheet" href="static/styles/Test.css">
<title>CusT_Test</title>
</head>
<body>
<header>
<div class="Header-logo">
<h1>CustomTests</h1>
<img id="burgerButton" src="static/imgs/Icons/BurgerMenu-icon.png" alt="">
</div>
<div class="Header-elements"></div>
</header>
<div class="SideBar">
<div class="SideBar-logo">
<h1>CustomTests</h1>
</div>
<div class="SideBar-elements">
<a href="index.html">
<div class="SideBar-questions">
<img src="static/imgs/Icons/Questions-icon.png" alt="">
<span>Questions</span>
</div>
</a>
<a href="List.html">
<div class="SideBar-Tests">
<img src="static/imgs/Icons/List-icon.png" alt="">
<span>List</span>
</div>
</a>
<a href="Test.html">
<div style="background-color: rgb(70, 123, 214);" class="SideBar-Tests">
<img src="static/imgs/Icons/Tests-icon.png" alt="">
<span>Test</span>
</div>
</a>
</div>
</div>
<div class="Test">
<div class="Test-NavBar">
<span>Math Test</span>
<span>Questions: <span id="Questions-length"></span> </span>
</div>
<div class="Test-container">
<div class="Test-question">
<p>Question </p>
<span id="Question-number"></span>
</div>
<h1 id="Test-Question">Test your Knowledge</h1>
<div class="Test-answerContainer">
<input id="Test-input" type="text">
</div>
<button id="Test-button">Start</button>
</div>
<div class="Test-info">
<h1 id="Test-time">Time: <span id="TestTime-clock">0</span> </h1>
<a href="List.html"><button>Repeat</button></a>
</div>
</div>
<script src="static/js/burgerMenu.js"></script>
<script src="static/js/index.js"></script>
<script src="static/js/Test.js"></script>
</body>
</html>