mirror of
https://github.com/flynx/Course-JavaScript.git
synced 2025-10-29 11:00:10 +00:00
18 lines
353 B
HTML
18 lines
353 B
HTML
<!DOCTYPE html>
|
|
<html manifest="simplesnake.appcache">
|
|
<head>
|
|
<title>Simple Snake</title>
|
|
|
|
<link rel="stylesheet" href="simplesnake.css">
|
|
|
|
<script src="simplesnake.js"></script>
|
|
|
|
</head>
|
|
<body onload="setup()" onclick="clearHints()" class="hints">
|
|
|
|
<div class="simplesnake"> </div>
|
|
|
|
</body>
|
|
</html>
|
|
<!-- vim:set ts=4 sw=4 spell : -->
|