-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.63 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
33
34
35
36
37
38
39
<!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">
<link rel="stylesheet" href="assets/css/reset.css">
<link rel="stylesheet" href="assets/css/style.css">
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" integrity="sha384-DNOHZ68U8hZfKXOrtjWvjxusGo9WQnrNx2sqG0tfsghAvtVlRW3tvkXWZh58N9jp" crossorigin="anonymous">
<title>Breaking Bad Trivia Game!</title>
</head>
<body>
<!-- Portfolio link with added project: https://farha-neu.github.io/Responsive-Portfolio/portfolio.html -->
<div class="container bg1">
<div class="headerImage">
<img src="assets/images/header.jpg">
</div>
<div class="content">
<div id="header">Breaking Bad Trivia!</div>
<div id="start"><i class="fas fa-play-circle"></i></div>
<div id="numberQ"></div>
<div id="timer"></div>
<div id="question"></div>
<div id="result"></div>
<div id="options"></div>
<button id="playOver">Play Again</button>
</div>
</div>
<!-- JQuery -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- External javascript -->
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>