Started the concept of snetris

This commit is contained in:
Ben
2018-10-13 12:04:19 +01:00
parent 9bf4816501
commit f1ebfb3cef
3 changed files with 124 additions and 0 deletions

View File

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