-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (91 loc) · 3.14 KB
/
index.html
File metadata and controls
91 lines (91 loc) · 3.14 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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Shnake 🐍</title>
<link href="css/range-slider-element.min.css" rel="stylesheet" />
<link rel="stylesheet" href="css/odometer-theme.css" />
<link rel="stylesheet" href="css/main.css" />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/tippy-scale.css" />
<script src="js/hammer.min.js"></script>
<script src="js/range-slider-element.min.js"></script>
<script src="js/odometer.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/tippy.min.js"></script>
<script defer src="js/main.js"></script>
<script defer src="js/ui.js"></script>
</head>
<body>
<div class="modal modal--settings">
<h1 class="modal__heading"><em>Shnake</em></h1>
<div class="form"></div>
<div class="modal__buttons">
<a
href="#"
class="button button--prim button--init button--back-and-forth"
><i class="material-icons">play_arrow</i>Start game</a
>
<a
href="#"
class="button button--scnd button--bob"
data-tippy-content="Share your custom settings"
><i class="material-icons">share</i></a
>
</div>
</div>
<div class="modal modal--lose modal--hidden">
<h1 class="modal__heading">
<em>Aw snap!</em> You got to
<em><span class="modal__score"></span> points,</em> but you can surely
do better!
</h1>
<span class="modal__watermark">Game<br />over</span>
<div class="modal__buttons">
<a href="#" class="button button--prim button--init button--spin"
><i class="material-icons">replay</i>Play again</a
>
<a
href="#"
class="button button--scnd button--home button--topple"
data-tippy-content="Back to Home"
><i class="material-icons">home</i></a
>
</div>
</div>
<div class="modal modal--win modal--hidden">
<h1 class="modal__heading">
<em>Amazing!</em> You covered the entire board and got a perfect score
of <em><span class="modal__score"></span> points.</em>
</h1>
<span class="modal__watermark">Perfect<br />score</span>
<div class="modal__buttons">
<a href="#" class="button button--prim button--init button--spin"
><i class="material-icons">replay</i>Play again</a
>
<a
href="#"
class="button button--scnd button--home button--topple"
data-tippy-content="Back to Home"
><i class="material-icons">home</i></a
>
</div>
</div>
<div class="backdrop"></div>
<div class="gameboard">
<h1 class="score odometer">0</h1>
</div>
</body>
</html>