-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (26 loc) · 836 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Juego Educativo</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="game-container">
<h1>¡Vamos a aprender!</h1>
<div id="question-section">
<p id="question">Busca el tambor</p>
</div>
<div id="options-section">
<!-- Aquí se generarán las opciones dinámicamente con JavaScript -->
</div>
<p id="feedback"></p>
</div>
<!-- Botón para comenzar -->
<button id="start-button" onclick="startGame()">Comenzar</button>
<!-- Incluye el archivo items.js antes de script.js -->
<script src="items.js"></script>
<script src="script.js"></script>
</body>
</html>