-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (71 loc) · 1.87 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
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pet-A-Cat Game</title>
<style>
@import url("https://fonts.cdnfonts.com/css/kongtext");
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
body {
height: 100vh;
margin: 0;
background: linear-gradient(rgb(50, 12, 77), rgb(113, 34, 131));
font-family: "Kongtext", sans-serif;
font-size: 16px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
footer a,
footer .links {
color: rgba(255, 255, 255, 0.404);
text-decoration: none;
font-size: 12px;
}
footer .control {
padding: 18px;
color: rgba(255, 255, 255, 0.555);
}
footer .control p:nth-child(2) {
font-size: 12px;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="src/main.js"></script>
<footer>
<div class="control">
<p>pet 5 cats in 20 sec to reach the next level</p>
<p>
use arrow keys <span class="arrows">[←, ↑, ↓, →]</span> to move your
player
</p>
</div>
<div class="links">
<a href="https://github.com/iamfio/" rel="noopener" target="_blank">
Created by: Fiodor
</a>
|
<a
href="https://github.com/iamfio/pet-a-cat/"
rel="noopener"
target="_blank"
>
GitHub Repo
</a>
|
<a
href="https://github.com/iamfio/pet-a-cat/blob/main/LICENSE"
rel="noopener"
target="_blank"
>
MIT Licence
</a>
</div>
</footer>
</body>
</html>