-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPong.html
26 lines (21 loc) · 904 Bytes
/
Pong.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
<!--
-- Pong.html
-- Created on Tuesday 22 November 2016 by Josie Musto, Opus Laboris Recruitment
-->
<!-- Put your markup here -->
<style>
canvas {
border: solid 1px #fff;
border-left: none;
border-right: none;
image-rendering: pixelated;
width: 100%;
}
</style>
<div style="width: 100%; align-items: center; background: #202020; display: flex; margin: 0;">
<canvas id="pong" width="600" height="300" />
</div>
<!-- Load and execute javascript code used only in this page -->
<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/PongClasses.js"></script>
<script src="https://trisys-business-software.github.io/Apex-Games/Pong.js"></script>