mirror of
https://github.com/flynx/Slang.git
synced 2025-10-29 02:30:08 +00:00
23 lines
589 B
HTML
23 lines
589 B
HTML
<!DOCTYPE html>
|
|
<html manifest="simplesnake.appcache">
|
|
<head>
|
|
<title>Simple Snake</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
|
|
|
<link rel="manifest" href="manifest.json">
|
|
<link rel="stylesheet" href="simplesnake.css">
|
|
<script src="simplesnake.js"></script>
|
|
|
|
</head>
|
|
<body onload="setup()" onclick="clearHints()" class="hints">
|
|
|
|
<div class="title"> <h1>SimpleSnake<sup class="version"></sup></h1> </div>
|
|
|
|
<div class="simplesnake"> </div>
|
|
|
|
</body>
|
|
</html>
|
|
<!-- vim:set ts=4 sw=4 spell : -->
|