-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (34 loc) · 1.18 KB
/
Copy pathindex.html
File metadata and controls
45 lines (34 loc) · 1.18 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="How well do you know the Fox hit show, Bob's Burgers?">
<title>Bob's Burgers Quiz</title>
<link rel="stylesheet" type="text/css" href="index.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Raleway" rel="stylesheet">
</head>
<body>
<main role="main" class="container">
<header role="banner" class="quiz_name">
<section class="logo">
<img src="https://bit.ly/2nshXcI" alt="bob's burgers logo">
<p class="score">Correct:</p>
<p class="wrongScore">Incorrect:
</p>
</section>
</header>
<div class="banner" title="picture of bob and family"></div>
<section class="inner-container">
</section>
<!-- This ends the quiz section -->
<footer class="footer" role="contentinfo">
<p>© 2018 Ernest Phillips</p>
</footer>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="store.js" ></script>
<script src="index.js"></script>
</body>
</html>