-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (29 loc) · 1.07 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
31
32
<!-- Needed HTML Content -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title> The Ultimate Trivia Game </title>
<link href="https://fonts.googleapis.com/css?family=IM+Fell+Great+Primer" rel="stylesheet">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<!-- BIG container div with all the styling -->
<div class="container">
<div id="header">
</div>
<!-- This Div Will Hold Our Status Counter -->
<div id="status"></div>
<!-- This Div and it's children hold all questions, answers and gifs =) -->
<div class="magicDiv">
<div id="questions"></div>
<div id="answers"></div>
<div id="gifs"></div>
</div>
<!-- jQuery Link and closing tags -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Javascript script and closing tags -->
<script type="text/javascript" src="assets/game.js"></script>
<!-- End HTML Content -->
</body>
</html>