-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtetris.html
More file actions
36 lines (36 loc) · 937 Bytes
/
tetris.html
File metadata and controls
36 lines (36 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="tetris.css">
<script type="text/javascript" src="tetris.js" defer></script>
<title>Tetris</title>
</head>
<body>
<div>
<canvas id="canvasBoard">
Your browser does not support the canvas tag.
</canvas>
<canvas id="canvasNextShape">
Your browser does not support the canvas tag.
</canvas>
</div>
<div id="statistics">
<div id="score">
<label for="scoreData">Score :</label>
<p id="scoreData"></p>
</div>
<div id="lineCount">
<label for="lineCountData">Line Count :</label>
<p id="lineCountData"></p>
</div>
<div id="level">
<label for="levelData">Level :</label>
<p id="levelData"></p>
</div>
<div id="nextLevel">
<label for="nextLevelData">Next Level :</label>
<progress id="nextLevelData" value="0" max="10"></progress>
</div>
</div>
</body>
</html>