-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
80 lines (75 loc) · 2.82 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
78
79
80
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- App main information -->
<title>Tower of hanoi</title>
<meta name="description" content="tower of hanoi game developed by javascript & jquery. provided as web, desktop and mobile game. using service worker API" />
<link rel="manifest" href="manifest.json" />
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="assets/icon/48x48.png">
<link rel="apple-touch-icon" sizes="144x144" href="assets/icon/144x144.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/icon/144x144.png.png">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!-- Social fetch -->
<meta property="og:title" content="Tower of hanoi">
<meta property="og:description" content="Tower of hanoi game for web and all devices desktop, android and IOS. developed using Javascript.">
<meta property="og:image" content="assets/icon/icon.png">
<meta property="og:url" content="https://tower-of-hanoi.github.io/">
<meta property="og:site_name" content="European Travel, Inc.">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image:alt" content="Tower of hanoi game">
<meta name="twitter:author" content="@elhakimdev">
</head>
<body>
<ul>
<li>
<span>Level <input type="text" value="1" disabled class="level" />= <apan class="disk-num">3</apan> Disks</span>
</li>
<li>
<h1 class="timer">00 : 00 : 00</h1>
</li>
<li>
<button class="start">Start</button>
</li>
<li>
<button class="stop">Stop</button>
</li>
<li>
<button class="pause">Pause</button>
</li>
</ul>
<section>
<div class="tower _1"></div>
<div class="tower _2"></div>
<div class="tower _3"></div>
<div class="lock"></div>
</section>
<div class="won">
<div class="congrate">
<h1>✔</h1>
<h2>Great work</h2>
<p>Move to the next level</p>
<button class="next-level">→</button>
<button class="replay">↻</button>
</div>
</div>
<div class="alert">
<h1>⚠</h1>
<h2>You can't put a big disk on a smaller one</h2>
<div class="clearfix"></div>
</div>
<a href="https://www.facebook.com/elhakimdev" target="_blank">
<div class="card">
<img src="assets/me.jpg" alt="author photo" />
<div>
<h4>Mahmoud Elhakim</h4>
<p>UI Developer</p>
</div>
</div>
</a>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>