28 lines
		
	
	
		
			880 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			880 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html lang="es">
 | 
						|
<head>
 | 
						|
  <meta charset="UTF-8">
 | 
						|
  <title>Pong Game</title>
 | 
						|
  <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
  <link rel="stylesheet" href="styles.css">
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
  <h1 id="title">Pong Clásico</h1>
 | 
						|
  <p>Usa las flechas arriba/abajo para mover tu pala. ¡No dejes que la bola pase!</p>
 | 
						|
 | 
						|
  <div id="controls">
 | 
						|
    <label for="difficulty">Dificultad:</label>
 | 
						|
    <select id="difficulty">
 | 
						|
      <option value="facil">Fácil</option>
 | 
						|
      <option value="normal" selected>Normal</option>
 | 
						|
      <option value="dificil">Difícil</option>
 | 
						|
    </select>
 | 
						|
    <button id="pause-btn">Pausar</button>
 | 
						|
  </div>
 | 
						|
 | 
						|
  <canvas id="pong" width="600" height="400" aria-label="Tablero Pong"></canvas>
 | 
						|
  <div id="score" aria-live="polite"></div>
 | 
						|
  <button id="restart-btn">Reiniciar</button>
 | 
						|
  <script src="script.js"></script>
 | 
						|
</body>
 | 
						|
</html> |