-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
51 lines (42 loc) · 1.32 KB
/
index2.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
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trivia Game</title>
<!-- use bootstrap-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<!-- point to css file-->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<!-- heading of pages -->
<body>
<div>
<h1 id="mainheader">Totally Dog Trivia!</h1>
<img id="headimg" src="assets/images/cammie.jpg" alt="mydog">
</div>
<br><br><br>
<div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="startBtn">
<button id="start" class="start-button">Start</button>
</div>
</div>
</div>
</div>
</div>
<div id="triviagame">
<div id="timer"></div>
<div id="triviaQ"></div>
<div id="winOrLose"></div>
<div id="answersQ"></div>
<div id="correctImg"></div>
</div>
<div id="gameOver"></div>
<!-- play game -->
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="assets/javascript/app.js"> </script>
<!--<script=type="text/javascript">-->
</body>
</html>