Pingpong / index.html
Gregniuki's picture
Rename Index.html to index.html
5aefc5e verified
raw
history blame
458 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="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>