mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-04 19:08:22 +00:00
17 lines
558 B
HTML
17 lines
558 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Beep-Boop</title>
|
|
<script src="pong.js"></script>
|
|
<link rel="stylesheet" href="pong.css">
|
|
</head>
|
|
<body>
|
|
<div class="instructions">Game is controlled via mouse. Hover your mouse to control the green paddel. First to ten wins and halts game. Three cheers for the home team!</div>
|
|
<canvas id="board"></canvas>
|
|
<div class="score_zone">
|
|
<div class="human_points">0</div>
|
|
<div class="bot_points">0</div>
|
|
</div>
|
|
</body>
|
|
</html> |