-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 1.85 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
53
54
55
56
<!-- Set up html document -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Coding Quiz</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/7c0bcaa930.js"
crossorigin="anonymous"
></script>
<link
href="https://fonts.googleapis.com/css2?family=Truculenta:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Align items in flexbox container, with a main axis of 'column' and a cross-axis running along the rows -->
<div class="container">
<div id="leaderBoard"></div>
<div id="home" class="flex-column flex-center">
<h1>On your mark...get set...code!</h1>
<!-- Create placeholder buttons -->
<button
id="play"
type="button"
class="btn btn-outline-info col-6 mx-auto text-center"
>
Play</button
><br />
<button
id="trophy"
type="button"
class="btn btn-outline-info col-6 mx-auto text-center"
>
<i class="fas fa-trophy"></i><br />
Leaderboard
</button>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-b5kHyXgcpbZJO/tY9Ul7kGkf1S0CWuKcCD38l8YkeH8z8QjE0GmW1gYU5S9FOnJ0"
crossorigin="anonymous"
></script>
<script src="./script.js"></script>
<script src="./showleaderboard.js"></script>
</body>
</html>