-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (40 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="public/favicon.ico" type="image/x-icon" />
<title>Root Beer Riot</title>
</head>
<body class="">
<!-- Header Start -->
<div class="navbar bg-neutral text-neutral-content fixed top-0 header">
<a href="./index.html" class="btn btn-ghost normal-case text-xl">Root Beer Riot</a>
<a id="soundOnHome" class="btn btn-accent mx-1 hover:cursor-pointer">
Music On 🎶</a
>
<a href="./help.html" class="btn btn-secondary mx-1 hover:cursor-pointer">
Rules/Help 💁🏽♂️</a>
</div>
<!-- Header End -->
<div class="gameIntro homeBG">
<div class="">
<div class="w-32 ">
<img src="/logo.png" />
</div>
</div>
<p class="max-w-sm text-center my-4 font-medium text-xl text-white"> Adventure through “Soda Society” playing as a “Radical Rootbeer Can” on the run. Dodge obstacles, and collect caps and cubes, to become the carbonation king. 👑</p>
<a href="./play" class="btn gameIntroBtn">Start Game 🌻</a>
</div>
<!-- Footer Start -->
<footer class="footer footer-center p-4 bg-base-300 text-base-content fixed bottom-0 left-0">
<div>
<p class="text-base text-accent">Developed By Alex, David, and <a class="link" href="https://twitter.com/DejaCherese">Deja</a> </p>
</p><a class="link text-sm" href="https://www.buffalogamespace.com/">Created at The Buffalo Game Space For Global Game Jam 2023</a></p>
</div>
</footer>
<!-- Footer End -->
<script type="module" src="./home.js"></script>
</body>
</html>