-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (36 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Homepage</title>
<link rel="stylesheet" type="text/css" href="style.css">
<!--Cool font imo-->
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@100&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>
Hunger Games website
</h1>
<p style="font-size: x-small;">i guess.</p>
</header>
<div id="MainContents">
<div class="contentItems" id="DetailsButton" onclick="window.location.href = 'details/details.html';">
Details
</div>
<div class="contentItems" id="PlayButton" onclick="window.location.href = 'play/play.html';">
Play
</div>
<div class="contentItems" id="ParticipantsButton" onclick="window.location.href = 'participants/participants.html';">
Participants
</div>
</div>
<footer>
<p>
Made by:<br/>
<b><a>1Kill2Steal#5316</a></b> & <b><a>EmperMiner#4068</a></b>
</p>
</footer>
</body>
</html>