-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (23 loc) · 978 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>
<head>
<meta charset="utf-8">
<title>Houston Lingo Trivia</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="assets/javascript/app.js"></script>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="jumbotron" id="triviaGameZone">
<h1 class="display-4">Houston Lingo Trivia!</h1>
<div class="text-center" id="timer"></div>
<div class="container" id="questionZone"></div>
<div class="text-center" id="selectZone">
<a class="btn btn-primary btn-lg" role="button" id="start">Start!</a>
</div>
<div class="text-center" id="answerZone"></div>
</div>
</body>
</html>