-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (23 loc) · 1.02 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
<html>
<title>Nicum CBT Tool (Beta Re-write)</title>
<head>
<link href='https://fonts.googleapis.com/css?family=Rubik Glitch' rel='stylesheet'>
<link rel="stylesheet" href="./styles.css">
<script src="./script.js"></script>
</head>
<body>
<h1>Nicum CBT Tool (Beta Re-write)</h1>
<div id="work-area">
<fieldset>
<legend>Enter the details of the test</legend>
<span class="instruction-text">Enter the number of questions : </span><input type="number" min="1"
id="question-count"> <br>
<span class="instruction-text">Enter the number of minutes the exam lasts : </span><input type="number"
min="1" id="time"> <br>
<span class="instruction-text">Enter the name of the exam : </span><input type="text" id="exam-name"> <br>
<button id="exam-detail-submit" class="button" onclick="testFormat()">Procced</button>
</fieldset>
</div>
<div id="timer">Time Remaining: <span id="time">--:--</span></div>
</body>
</html>