-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (50 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
rel="shortcut icon"
href="assets/static/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" href="assets/static/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" type="text/css" href="assets/css/startPage.css" />
<title>Fall Guys</title>
</head>
<body>
<div
class="container-fluid h-100 d-flex align-items-center justify-content-center"
>
<div class="d-flex flex-column">
<div class="title">
<h1>Fall Guys: Hexagons</h1>
<p>
Your current record is: <span id="record">0 seconds</span><br />
Player one: <span id="playerOne">Player One</span><br />
Player two: <span id="playerTwo">Player Two</span><br />
</p>
</div>
<button class="btn btn-primary" onclick="goToGame()">Survival</button>
<button class="btn btn-primary" onclick="goToGameTwo()">1 vs 1</button>
<button class="btn btn-secondary" onclick="goToOptions()">
Options
</button>
<button class="btn btn-secondary" onclick="goToTutorial()">
Tutorial
</button>
<audio autoplay loop controls class="audio">
<source src="assets/static/sounds/lobby.mp3" type="audio/mpeg" />
<!-- Include additional source tags with alternative audio formats for better browser compatibility -->
</audio>
</div>
</div>
<script src="assets/js/home.js"></script>
</body>
</html>