files
Juegos/pong/index.html
2025-08-21 23:42:55 +02:00

16 lines
440 B
HTML

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Pong Game</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>Pong Clásico</h1>
<p>Usa las flechas arriba/abajo para mover tu pala. ¡No dejes que la bola pase!</p>
<canvas id="pong" width="600" height="400"></canvas>
<div id="score"></div>
<button id="restart-btn">Reiniciar</button>
<script src="script.js"></script>
</body>
</html>