forked from Soumo-git-hub/On-Beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OnBeat</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo">OnBeat</div>
<div class="top-right">
<span class="streak">Streak: 0</span>
</div>
<div class="profile-button" onclick="window.location.href='profile.html'">
<img src="mikasa1.png" alt="Profile">
</div>
</header>
<main>
<div class="game-container">
<div class="swipe-text">Swipe to Start</div>
<div class="model-viewer">
<img src="mikasa3.png" alt="3D Model">
</div>
<div class="controls">
<div class="left-controls">
<button onclick="window.location.href='events.html'">Events</button>
<button onclick="window.location.href='yoga.html'">Yoga</button>
</div>
<div class="right-controls">
<button onclick="window.location.href='songs.html'">Songs</button>
<button onclick="window.location.href='sports.html'">Sports</button>
</div>
</div>
</div>
</main>
<footer>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<p>© 2024 OnBeat</p>
</footer>
<script src="main.js"></script>
</body>
</html>