-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 1.21 KB
/
index.html
File metadata and controls
31 lines (29 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./img/gift3.svg" type="image/x-icon">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style/style.css">
<script src="./js/game.js"></script>
<title>Javascript Game</title>
</head>
<body>
<img id="bckgrnd" src="./img/background.jpg" alt="Christmas tree with gifts">
<audio id="xmas-sound" src="img/xmas.mp3"></audio>
<audio id="collect-sound" src="img/collect.mp3"></audio>
<div id="start-game">Start game</div>
<div id="game-over" class="hide">Game over :(</div>
<div class="score"><p>Score:</p><span id="score">0</span></div>
<div id="highscore" class="score highscore"><p>Highscore:</p><span id="highscore-num"></span></div>
<div id="lost-gifts">
<img id="img1" src="./img/bag.png" alt="life">
<img id="img2" src="./img/bag.png" alt="life">
<img id="img3" src="./img/bag.png" alt="life">
<img id="img4" src="./img/bag.png" alt="life">
<img id="img5" src="./img/bag.png" alt="life">
</div>
<div id="root"></div>
</body>
</html>