-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (37 loc) · 1.48 KB
/
index.html
File metadata and controls
52 lines (37 loc) · 1.48 KB
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">
<title>Trivia Game</title>
<link href="https://fonts.googleapis.com/css?family=Audiowide" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/reset.css">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<div class="container">
<section class="header-flex">
<header>
<!-- <h1 class="LAZER Lazer_outline"> Movies <span id="trivial" > Trivial </span> Trivia</h1> -->
<img class="title-image" src="./assets/images/trivia-title.png">
</header>
</section>
<section class="mid-flex">
<div class="number-container">
<h6 class="time-title">Timer Count Down</h6>
<p id="timeID" class="time"></p>
</div>
<section class="body-flex">
<div class="question-container">
<!-- <img src="./assets/images/hero.gif" class="test-image"> -->
<div class="img-container">
</div>
</div>
</section>
</section>
</div>
<script src="./assets/javascript/jquery-3.3.1.min.js"></script>
<script src="./assets/javascript/app.js"></script>
</body>
</html>