-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.26 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💜</text></svg>"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/animations.css" />
<link rel="stylesheet" href="style.css" />
<script src="main.js" defer></script>
<title>Game</title>
</head>
<body>
<div id="start-btn-container">
<button id="start-btn">Start Now</button>
</div>
<div class="scores">
<span>Score: </span>
<h3 class="score-text">0</h3>
</div>
<div class="fruits"></div>
<div class="cloud-container">
<img class="cloud" src="imgs/assets/cloud.svg" alt="" />
<img class="cloud" src="imgs/assets/cloud.svg" alt="" />
</div>
<div class="player-container">
<img class="player" src="imgs/player.png" alt="" />
</div>
<audio id="bg-music" src="bg-music.mp3" autoplay loop></audio>
<audio id="pop-sound" src="pop.mp3"></audio>
</body>
</html>