-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (28 loc) · 843 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (28 loc) · 843 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Alberto drake Ping Pong</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="pong-container">
<div id="controls">
<h2>Controls</h2>
<ul>
<li><strong>Mouse:</strong> Move the left paddle up and down.</li>
<li><strong>Arrow Keys:</strong> <kbd>↑</kbd> Move up & <kbd>↓</kbd> Move down.</li>
<li>The right paddle is controlled by the computer.</li>
</ul>
</div>
<canvas id="pong-canvas" width="800" height="500"></canvas>
<div id="scoreboard">
<span id="score-left">0</span>
<span>-</span>
<span id="score-right">0</span>
</div>
</div>
<script src="pong.js"></script>
</body>
</html>