18 lines
562 B
HTML
18 lines
562 B
HTML
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Atrapa el Topo</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Atrapa el Topo</h1>
|
|
<p>Haz clic en el topo cuando aparezca. ¡Consigue la mejor puntuación en 30 segundos!</p>
|
|
<div id="score">Puntuación: <span id="score-value">0</span></div>
|
|
<div id="timer">Tiempo: <span id="timer-value">30</span>s</div>
|
|
<div id="grid"></div>
|
|
<button id="start-btn">¡Empezar!</button>
|
|
<div id="end-message"></div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html> |