Tetris thing

This commit is contained in:
plane000
2018-10-13 17:21:43 +01:00
parent 0e700cc56f
commit 7a72931f6e
4 changed files with 160 additions and 99 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>Snetris</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>