File size: 611 Bytes
bf2da71 0113737 bf2da71 4873bbd bf2da71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ping Pong Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="scoreboard">
<span>Player: <span id="playerScore">0</span></span>
<span>Bot: <span id="botScore">0</span></span>
</div>
<div id="gameArea">
<div id="paddleLeft" class="paddle"></div>
<div id="paddleRight" class="paddle"></div>
<div id="ball"></div>
</div>
<script src="script.js"></script>
</body>
</html> |