-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 940 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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta charset="utf-8" />
</head>
<body>
<audio id="music" src="assets/tetris.mp3" loop></audio>
<script src="constants.js"></script>
<script src="cell.js"></script>
<script src="tetris.js"></script>
<script src="button.js"></script>
<script src="imgButton.js"></script>
<script src="tetrisScreen.js"></script>
<script src="sketch.js"></script>
<div class="orientation-alert hidden">
<div class="orientation-alert-content">
<img src="assets/45792-rotate-phone.gif" alt="rotate-your-phone" />
<p>
Please rotate your device (or resize to lanscape if you are on
desktop)
</p>
</div>
</div>
</body>
</html>