-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
37 lines (37 loc) · 1.63 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
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="styles.css">
<body>
<div class="game">
<div class="game__body">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
<path d="M55.9 13.2c.2-.6.3-1.3.3-2C56.3 7.8 53.4 5 50 5s-6.3 2.8-6.3 6.3c0 .7.1 1.4.3 2C27.6 17.2 15 37.5 15 62c0 18.2 15.7 33 35 33s35-14.8 35-33c0-24.5-12.6-44.8-29.1-48.8zM50 8.8c1.4 0 2.5 1.1 2.5 2.5s-1.1 2.5-2.5 2.5-2.5-1.1-2.5-2.5 1.1-2.5 2.5-2.5zM40 87.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM50 90c-1.4 0-2.5-1.1-2.5-2.5S48.6 85 50 85s2.5 1.1 2.5 2.5S51.4 90 50 90zm10-2.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM67.5 70c0 1.4-1.1 2.5-2.5 2.5H35c-1.4 0-2.5-1.1-2.5-2.5V40c0-1.4 1.1-2.5 2.5-2.5h30c1.4 0 2.5 1.1 2.5 2.5v30z"/>
</svg>
</div>
<div class="controls">
<div class="controls__button a"></div>
<div class="controls__button b"></div>
<div class="controls__button c"></div>
</div>
<div class="game__screen">
<canvas class="background"></canvas>
<canvas class="animation"></canvas>
<div class="game__options">
<div class="game__options__1"></div>
<div class="game__options__2"></div>
</div>
</div>
</div>
<script src="helpers.js"></script>
<script src="coroutine.js"></script>
<script src="Animatable.js"></script>
<script src="Sprite.js"></script>
<script src="Tamagotchi.js"></script>
<script src="Egg.js"></script>
<script src="Game.js"></script>
</body>
</html>