-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 942 Bytes
/
index.html
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
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-131210764-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-131210764-1');
</script>
<meta charset="UTF-8">
<title>Tetris</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<audio id="theme" loop>
<source src="sounds/tetrisTheme.mp3" type="audio/mpeg">
</audio>
<audio id="move">
<source src="sounds/move.mp3" type="audio/mpeg">
</audio>
<audio id="drop">
<source src="sounds/drop.mp3" type="audio/mpeg">
</audio>
<div class="canvas-container">
<canvas id="canvas" width="50%" height="50%">
</canvas>
</div>
<br>
<br>
<script src="game.js"></script>
<footer>
Roma Bhattacharjee — 2018
</footer>
</body>
</html>