-
Notifications
You must be signed in to change notification settings - Fork 1
/
results.html
26 lines (26 loc) · 1.11 KB
/
results.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">
<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="https://www.iconsdb.com/icons/preview/white/anchor-2-xxl.png" alt="anchor icon"</img>
</header>
<main role="main">
<h1>Final Score:<br>9/10 Correct</h1>
<p>Custom message based on score using if/else if/else statement:<br>
Way to go, Captain (8+) <br>
Second mate status, not too shabby (5-7)<br>
Yikes...better stick to the beaches (0-4)</p>
<a href="index.html"><button type="button">Retake Quiz</button></a>
</main>
</body>