-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
30 lines (25 loc) · 911 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js"></script>
<script src="game.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Long Fox is long</title>
</head>
<body>
<div class="gamearea"></div>
<div class="touch up">↑</div>
<div class="touch down">↓</div>
<div class="touch left">←</div>
<div class="touch right">→</div>
<div class="dialog">
<div class="title">stevecat's long fox game</div>
<div class="instructions">use arrow keys or touch sides of screen<br />
collect cookies<br />
become the longest fox possible<br />
refresh page to restart</div>
<div class="go">RELEASE THE FOX</div>
</div>
</body>
</html>