2018-01-03 02:30:09 -06:00

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>