2017-04-13 14:22:01 +03:00
|
|
|
<!DOCTYPE html>
|
2017-04-13 14:52:48 +03:00
|
|
|
<html manifest="simplesnake.appcache">
|
2017-04-13 14:22:01 +03:00
|
|
|
<head>
|
|
|
|
|
<title>Simple Snake</title>
|
|
|
|
|
|
2017-04-13 15:01:23 +03:00
|
|
|
<meta charset="utf-8"/>
|
2017-04-14 14:15:40 +03:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
2017-04-13 14:22:01 +03:00
|
|
|
|
2017-04-13 15:01:23 +03:00
|
|
|
<link rel="stylesheet" href="simplesnake.css">
|
2017-04-13 14:22:01 +03:00
|
|
|
<script src="simplesnake.js"></script>
|
|
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
<body onload="setup()" onclick="clearHints()" class="hints">
|
|
|
|
|
|
2017-04-23 15:59:56 +03:00
|
|
|
<div class="title"> <h1>SimpleSnake<sup class="version"></sup></h1> </div>
|
2017-04-23 15:37:43 +03:00
|
|
|
|
2017-04-13 14:22:01 +03:00
|
|
|
<div class="simplesnake"> </div>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|
|
|
|
|
<!-- vim:set ts=4 sw=4 spell : -->
|