-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 938 Bytes
/
index.html
File metadata and controls
37 lines (30 loc) · 938 Bytes
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
<!doctype html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8;">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<script src="./js/Game.js" type="text/javascript"></script>
<title>Javascript Snake</title>
</head>
<body onload="SetUpGame(false, getGetLvl())">
<div id="container">
<h1>Javascript Snake</h1>
<div id="stat">
Bewegen mit den Pfeieltasten, Pause mit 'p'
</div>
<div id="game">
Bitte warte kurz...<br>
<noscript>Javascript muss aktiviert sein</noscript>
</div>
<div id="foot">
Javascript Snake - Sven Tatter
<br>
<a href="http://creativecommons.org/licenses/by-sa/3.0/de/">
<img src="http://i.creativecommons.org/l/by-sa/3.0/de/88x31.png">
<br>
Namensnennung-Weitergabe unter gleichen Bedingungen 3.0 Deutschland
</a>
</div>
</div>
</body>
</html>