Pingpong / index.html
Gregniuki's picture
Update index.html
0113737 verified
raw
history blame
611 Bytes
<!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>