-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 850 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (29 loc) · 850 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Tetris</title>
</head>
<body>
<div class="left-stats-container">
<h1 id="fullNumber" class="big-number">100%</h1>
<h1>Best</h1>
</div>
<div class="next-container">
<canvas id="nextCanvas" width="120" height="90"></canvas>
<h1>Next</h1>
</div>
<canvas id="myCanvas" width="300" height="600"></canvas>
<div class="score-container">
<h1 id="scoreNumber" class="big-number">0</h1>
<h1>Score</h1>
</div>
<div class="score-container">
<h1 id="linesNumber" class="big-number">0</h1>
<h1>Lines</h1>
</div>
<script src="script.js"></script>
</body>
</html>