forked from thedrean/alphabet-snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (47 loc) · 2.06 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>
<meta charset="UTF-8">
<!-- MOBILE THINGS -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content=yes>
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- screen fix -->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1,width=device-width">
<!-- prevents iPhone5 letterboxing-->
<meta name="viewport" id="vp" content="initial-scale=1.0,user-scalable=no,maximum-scale=1" media="(device-height: 568px)">
<!-- APP ICONS -->
<!-- <link rel="apple-touch-icon" href="touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="touch-icon-iphone-retina.png"> -->
<link rel="apple-touch-icon" sizes="152x152" href="images/touch-icon-ipad-retina.png">
<!-- START UP SCREEN -->
<link href="images/startup.png"
media="(device-width: 768px) and (device-height: 1024px)
and (orientation: landscape)
and (-webkit-device-pixel-ratio: 2)"
rel="apple-touch-startup-image">
<title>Alphabet Snake: a game for toddlers</title>
<!-- JQUERY -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/hammer.min.js"></script>
<script src="js/main.js"></script>
<script src="js/sound.js"></script>
<!-- STYLESHEETS -->
<link rel="stylesheet" type="text/css" href="stylesheets/reset.css">
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css">
</head>
<body>
<div class="m-overlay"></div>
<div class="m-instruct">
<h1>Alphabet Snake</h1>
<img src="images/swipe.svg"> Swipe to collect the alphabet<br>
<a class="start">Let's Play!</a>
</div>
<div class="m-instruct over">
<h1>Nice job!</h1>
<a class="restart">Try again</a>
</div>
<canvas id="canvas"></canvas>
</body>
</html>