-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.html
28 lines (26 loc) · 1.02 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coding Quiz</title>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.2/css/all.css" integrity="sha384-vSIIfh2YWi9wW0r9iZe7RJPrKwp6bG+s9QZMoITbCckVJqGCCRhc+ccxNcdpHuYu" crossorigin="anonymous">
</head>
<body>
<div class="container">
<div class="left-container">
<h1>Coding Quiz</h1>
</div>
<div class="right-container">
<a href="/quiz.html"><button id="start-btn" onClick="startTimer()">Start</button></a>
<button id="in-btns"onclick=" openInstructions()" >Instructions</button>
</div>
</div>
<div id="instructions">
<i class="fas fa-times" id="close-ins" onclick="closeInstructions()"></i>
<p>Select the correct answer and then click next. That's it!</p>
</div>
<script src="app.js" ></script>
</body>
</html>