mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
15 lines
505 B
HTML
15 lines
505 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>HTML5 Tetris</title>
|
|
<link rel='stylesheet' href='style.css' />
|
|
</head>
|
|
<body>
|
|
<audio id="clearsound" src="sound/pop.ogg" preload="auto"></audio>
|
|
<canvas width='300' height='600'></canvas>
|
|
<button id="playbutton" onclick="playButtonClicked();">Play</button>
|
|
<script src='js/tetris.js'></script>
|
|
<script src='js/controller.js'></script>
|
|
<script src='js/render.js'></script>
|
|
</body>
|
|
</html> |