-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 2.28 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Seek the Snitch</title>
<link rel="icon" href="./styles/images/golden_snitch.png">
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<header>
<div class = "sound-container">
<img src="./styles/images/sound-icon.png" alt="sound-icon"></p>
</div>
<div class = "highscore-container">
<h1>HIGHEST SCORE</h1>
<p><span>0</span>x <img src="./styles/images/golden_snitch.png" alt="little-snitch-high-score"></p>
<p class = 'ath'>ATH : 32x by Tristan</p>
</div>
</header>
<section class = "game-container">
<div class="title-container">
<img src="./styles/images/title.png" alt="title">
</div>
<canvas id="canvas" width="300" height="300"></canvas>
</section>
<section class = "characters-container">
<div class="left-animation-container">
<img src="./styles/images/hermany.png" alt="hermany">
</div>
<div class="right-animation-container">
<img src="./styles/images/draco.png" alt="draco">
</div>
</section>
<section class = "information-container">
<div class = "chronometer-container">
<div class = "time-container">
<p>30</p>
</div>
</div>
<div class = "score-container">
<div class = "start-btn">PLAY</div>
</div>
<div class = "playerinfo-container">
<div class = "playercard-container">
<img src="./styles/images/harry.png" alt="harry">
</div>
</div>
</section>
<script src="js/index.js"></script>
<template id="title-template">
<div class="title-container">
<img src="./styles/images/title.png" alt="title">
</div>
</template>
<template id="result-template">
<div class="result-container">
<h1>Well done young wizard !</h1>
<p>You caught </br> <span>54</span>x <img src="./styles/images/golden_snitch.png" alt="little-snitch"> </p>
</div>
</template>
</body>
</html>