-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
30 lines (30 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Boating Safety Quiz App</title>
<meta name="description" content="Test your boating rules and safety knowledge">
<link href="index.css" rel="stylesheet" type="text/css" />
<link href="https://fonts.googleapis.com/css?family=Roboto|Walter+Turncoat&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="datastore.js"></script>
<script src="index.js"></script>
</head>
<body>
<header role="banner">
<img class="logo" src="./photos-icons/anchor-icon.png" alt="anchor icon"/>
<ul class="stats">
<li>Question: <span id="js-q-number"></span>/10</li>
<li>Score: <span id="js-score">0</span></li>
</ul>
</header>
<main role="main">
<section class="js-start-quiz">
<h1>What's your Boating Safety IQ?</h1>
<button type="button" class="start-button js-start-button">Start Quiz</button>
</section>
<section class="quiz-section js-quiz-section">
</section>
</main>
</body>