-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (22 loc) · 885 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Bon Iver Quiz</title>
<link rel="stylesheet" href="main.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Barlow|Manjari&display=swap" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<!--start page-->
<div class="outer-container">
<div class="container js-start-page">
<h1>Do you know Bon Iver?</h1>
<img src="images/justin-face.jpeg" id="justin-face">
<button class="start-button js-start-button">Start the Quiz!</button>
</div>
</div>
<script src="index.js"></script><script src="store.js"></script>
</body>
</html>