-
Notifications
You must be signed in to change notification settings - Fork 0
/
quiz.html
31 lines (30 loc) · 815 Bytes
/
quiz.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
<!DOCTYPE html>
<html lang="en-us">
<meta charset="UTF-8">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<title>Career Pathways</title>
</head>
<body>
<div class="title">
<h2>Our Quiz</h2>
</div>
<div class="outer-box">
<div class="content-box">
<div class="container">
<div class="row">
<div id="quiz-container">
</div>
</div>
</div>
</div>
<div>
<button class="button" id="button"><a href="results.html"> Results</a></button>
</div>
</div>
</div>
<script src='quiz.js'></script>
</body>
</html>