-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
110 lines (109 loc) · 3.14 KB
/
about.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<meta charset="utf-8" />
<link
rel="shortcut icon"
type="image/png"
href="https://i.imgur.com/3p80YDX.png"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<head>
<link rel="stylesheet" href="style.css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-136836752-5"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-136836752-5");
</script>
</head>
<body name="about page body">
<div style="padding-left: 1em; padding-right: 1em;">
<div
class="flex-with-space bg-mik"
style="padding-left: 1em; padding-right: 1em;"
name="title bar"
>
<h1 class="colourmod smol">whack a key</h1>
</div>
<br />
<div class="vertical-center" name="About page body">
<p class="colourmod smol">
I don't know why I wrote
<a target="_blank" href="https://github.com/Mik1337/whack-a-key"
>this game</a
>
, but when I started writing this, I knew I was going to write it in
<a target="_blank" href="https://vuejs.org/">vue.js</a> because I
remembered playing
<a target="_blank" href="https://notallmen.dev/">notallmen.dev</a> by
<a target="_blank" href="https://twitter.com/ctrlshifti"
>@ctrlshifti</a
>
who wrote their game in
<a target="_blank" href="https://vuejs.org/">vue.js</a>.
</p>
<p class="colourmod smol">
Game Sounds <br />
<a
target="_blank"
href="https://freesound.org/people/Njlewy/sounds/460504/"
>
Retro Adventure
</a>
<br />
<a
target="_blank"
href="https://freesound.org/people/MATTIX/sounds/402067/"
>
Coin Pickup
</a>
<br />
<a
target="_blank"
href="https://freesound.org/people/Soundholder/sounds/425354/"
>
8bit Jump
</a>
<br />
<a
target="_blank"
href="https://freesound.org/people/B_Lamerichs/sounds/264057/"
>
Game Over
</a>
<br />
</p>
<p>
FavIcon made by
<a
href="https://www.flaticon.com/<?=_('authors/')?>freepik"
title="Freepik"
>Freepik</a
>
from
<a href="https://www.flaticon.com/" title="Flaticon"
>www.flaticon.com</a
>
</p>
</div>
<div class="flex-with-space" style="padding-top: 2.5em;">
<a href="/" style="left: 0;">[Home]</a>
<a href="/leaderboard.html" style="left: 0;">Leader Board</a>
<a
target="_blank"
href="https://twitter.com/AvocadoMik"
style="right: 0;"
>
@mik
</a>
</div>
</div>
</body>
</html>