-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTetris.html
More file actions
24 lines (19 loc) · 867 Bytes
/
Tetris.html
File metadata and controls
24 lines (19 loc) · 867 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
<!--
-- Tetris.html
-- Created on Tuesday 22 November 2016 by Josie Musto, Opus Laboris Recruitment
-->
<!-- Put your markup here -->
<style>
canvas {
border: solid .2em #fff;
height: 90vh;
}
</style>
<div style="background: #202028; color: #fff; font-family: sans-serif; font-size: 2em; text-align: center;">
<div id="score"></div>
<canvas id="tetris" width="240" height="400" />
</div>
<!-- Load and execute javascript code used only in this page -->
<!--<script src="https://api.trisys.co.uk/apex/custom/Opus-Laboris-Recruitment/TetrisClasses.js"></script> -->
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<script src="https://trisys-business-software.github.io/Apex-Games/Tetris.js"></script>