-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (43 loc) · 1.69 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!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 href="https://fonts.googleapis.com/css?family=Faster+One&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/reset.css">
<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">
<link rel="stylesheet" href="assets/css/style.css">
<script type ="text/javascript" src=https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js></script>
<title>Document</title>
</head>
<body class = "bg">
<div class = "container bg-dark">
<div class = "row bg-secondary">
<div class = "col-sm-2"></div>
<div class = "col-sm-8 red">
<img id = "Nintendo" class = "mx-auto d-block" src = "assets/images/nintendo2.png" width="100%" height="auto">
</div>
<div class = "col-sm-2"></div>
</div>
<row>
<div class = "col-sm-12 text-center">
<h1 class = "text-center fasterone">Trivia Game!!</h1>
</div>
</row>
<div class = "row fullheight">
<div class = "col-sm-3 bg-dark"></div>
<div class = "col-sm-6 bg-dark my-auto">
<div class = "text-center">
<button id = "start" class = "btn btn-dark btn-outline-danger btn-lg my-auto">Start</button>
<div id = "timer" class = "text-center text-danger"></div>
<div id = "questions" class = "text-center"></div>
<div id = "answers"></div>
</div>
</div>
<div class = "col-sm-3 bg-dark"></div>
</div>
</div>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>