-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
41 lines (41 loc) · 1.94 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
<!DOCTYPE html>
<html>
<head>
<title>Tap the Black Tiles || About</title>
<meta charset="utf8">
<link rel="stylesheet" type="text/css" href="style.css"/>
<link rel="shortcut icon" href="icon-128.png" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<style>
html, body {
overflow-y: scroll;
}
body {
padding: 4%;
color: white;
background-color: black;
}
a {
color: gray;
}
</style>
</head>
<body class="about">
<h1>About <small><a href="index.html">[back]</a></small></h1>
<p><strong>Tap the black tiles</strong> is a clone of <em>Piano tiles : don't tap the white tiles</em> originally designed for Firefox OS, but available on any device that can run a web browser.</p>
<p>It is developed by Nicolas Hurtubise (aka me) during his free time. The original game is not free (as in freedom) and comes with advertisement (which I find annoying).</p>
<p>If you have ideas for new modes or for anything that could improve the game, <a href="mailto:[email protected]">let me know !</a></p>
<p>This game is distributed under the MIT license, and is therefore free and open source software. You can contribute to it directly <a href="https://github.com/316k/tap-the-black-tiles">on Github</a>.</p>
<p>For comments/issues about the Android bundle, <a href="https://github.com/316k/android-tap-the-black-tiles">it's here</a>.</p>
</body>
<script type="text/javascript" src="jquery-1.11.3.min.js"></script>
<script>
$(function() {
// XXX : Ugly bugfix below
if(window.droid) {
var height = Math.round($(window).width() * window.droid.getSize());
$('html, body').height(height);
}
});
</script>
</html>