-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 753 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 753 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
<html>
<head>
<title>Tetris Game JS</title>
<style>
#score{
display: inline-block;
}
div{
font-size: 25px;
font-weight: bold;
font-family: monospace;
text-align: center;
}
canvas{
display: block;
margin:0 auto;
}
</style>
</head>
<body>
<div>This Game Was Created By <a target="_blank" href="https://www.youtube.com/c/codeexplained">Code Explained</a></div><br>
<canvas id="tetris" width="200" height="400"></canvas>
<div>
Score : <div id="score">0</div>
</div>
<script src="tetrominoes.js"></script>
<script src="tetris.js"></script>
</body>
</html>