Renamed JS folder and started learning Crystal

This commit is contained in:
plane000
2018-06-17 19:47:18 +01:00
parent 27998205c2
commit 348ba8e737
49 changed files with 4 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Snake game</title>
<meta name="viewport" content="width=device-width, insitial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css" />
</head>
<body>
<a href="../index.html">return</a>
<canvas id="canv" width="400" height="400" onkeypress="onKeyPressed(event)"></canvas>
<script src="game.js"></script>
</body>
</html>