-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="alternate" hreflang="x-default" href="https://fifteen-puzzle.richterich.dev/" />
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0"
/>
<title>Fifteen Puzzle Game</title>
</head>
<body>
<div id="repo-stars">
<form action="https://www.paypal.com/donate" method="post" target="_top">
<input type="hidden" name="hosted_button_id" value="637A472RQK8YL" />
<input id="donate" type="image" name="submit" title="Feel free to make me a little bit happier" alt="Donate" src="images/paypal.png" />
</form>
<iframe
src="https://ghbtns.com/github-btn.html?user=richterich&repo=js-15-puzzle&type=star&count=true&size=large"
frameborder="0"
scrolling="0"
width="115"
height="30"
title="GitHub"
>
</iframe>
</div>
<div id="game-area"></div>
<button id="how-play" class="shake"><strong>?</strong></button>
<div id="info-panel" class="info">
<div class="info-content">
<div class="info-header">
<span class="close">×</span>
<h2>How To Play</h2>
</div>
<div class="info-body">
<p>Move tiles in grid to order them from <b>1</b> to <b>15</b>.</p>
<p>To move a tile you should click on it.</p>
</div>
<div class="info-footer">
<h4>
This project is open source, visit
<a href="https://github.com/richterich/js-15-puzzle/" target="blank">
<strong>the repo.</strong>
</a>
</h4>
</div>
</div>
</div>
<footer id="footer">
<p>© 2020 Alexander Richterich</p>
</footer>
</body>
</html>