-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (23 loc) · 866 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Snake</title>
<meta name="description" content="JavaScript (jQuery) Snake" />
<meta name="author" content="Yassine Elouazzani (kwarkjes)" />
<meta name="DC.creator" content="Yassine Elouazzani (kwarkjes)" />
<link rel="stylesheet" href="css/styles.css?v=1.0" />
<link rel="DC.creator" href="http://yes-in.nl" />
<meta name="twitter:site" content="@kwarkjes">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="js/scripts.js"></script>
</head>
<body>
<div class="wrapper">
<div class="game-window">
<span></span>
</div>
<span class="pause">Pause</span>
</div>
</body>
</html>