-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 2.58 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="./index.css" rel="stylesheet">
<title>CSA - Practise Set</title>
</head>
<body>
<!-- Sticky Top NavBar-->
<nav id="navbar_top" class="navbar navbar-expand-lg navbar-dark navbar_color sticky-top">
<div class="container">
<div class ="navbar-brand">CSA Mock Exam</div>
<div id="questionCount" class ="navbar-brand">Answered: 0/60</div>
<div id="correctCount" class ="navbar-brand">Correct: 0/60</div>
<!-- <div id="timerBtn" class ="navbar-brand btn" onClick="actionTimer(this)">Pause Timer</div> -->
<div class ="timer navbar-brand">Time Left: <span id="time">1:30:00</span></div>
<div id="report" class ="navbar-brand" data-toggle="tooltip" data-placement="top" title="Report Issue!"><a href="https://github.com/sebadasta/CSA_MockExam/issues/new" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="reportBtn" viewBox="0 0 16 16">
<path d="M8.982 1.566a1.13 1.13 0 0 0-1.96 0L.165 13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767zM8 5c.535 0 .954.462.9.995l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995A.905.905 0 0 1 8 5m.002 6a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/>
</svg>
</a></div>
</div> <!-- container.// -->
</nav>
<div class="container mt-3">
<div id="accordion">
<!-- generated via JS -->
</div>
</div>
<div class="mt-5 p-4 bg-light text-muted text-center">
<p>This is just a simply tool to practice for the exam. Please refer to <a href="https://docs.servicenow.com/">ServiceNow Documentation</a> for reliable information.</p>
<p>This set is based on a <a href="https://community.servicenow.com/community?id=community_Article&sys_id=a0e7f10bdb01dd50f77799ead3961917">community post</a> created by <i>Lon Landry</i>.</p>
</div>
<!-- Latest compiled JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="./data.js"></script>
<script src="./Timer_CountDown.js"></script>
<script src="./index.js"></script>
</body>
</html>