-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreguntas.html
73 lines (55 loc) · 2.44 KB
/
preguntas.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html>
<head>
<title>Trivia musical</title>
<link rel="icon" type="image/png" href="https://png.pngtree.com/element_our/20200702/ourlarge/pngtree-purple-musical-notes-image_2281302.jpg">
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div class="wrapper">
<h1 class="title">Trivia musical</h1>
<div class="mensaje-bienvenida">
<h2><b>¡Bienvenid@, <span id="nombreArtista"></span>, vamos a aprender de música!</b></h2>
<p></p>
<h2>Pregunta 1: ¿qué tipo de instrumento musical es el cencerro?</h2>
<p></p>
<img src="https://www.ecured.cu/images/8/8e/Campana-o-cencerro-de-mano.jpg">
<div class="question">
<button onclick="checkRespuesta(this, 'Pregunta 1', 'Idiófono')"><b>Idiófono</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 1', 'Membranófono')"><b>Membranófono</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 1', 'Cordófono')"><b>Cordófono</b></button>
<p></p>
<div id="resultado-pregunta-1"></div>
</div>
<h2>Pregunta 2: ¿cuál es la relativa menor de do mayor?</h2>
<p></p>
<img src="https://img.freepik.com/vector-premium/notas-musicales-lineas-dibujo-ondas-sonoras-musicales_578506-484.jpg?w=996">
<div class="question">
<button onclick="checkRespuesta(this, 'Pregunta 2', 'Re Mayor')"><b>Re Mayor</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 2', 'La Menor')"><b>La Menor</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 2', 'Re Menor')"><b>Re Menor</b></button>
<p></p>
<div id="resultado-pregunta-2"></div>
<h2>Pregunta 3: ¿cómo se llama este instrumento?</h2>
<p></p>
<img src="https://upload.wikimedia.org/wikipedia/commons/1/1d/Charango_boliviano.JPG">
<div class="question">
<button onclick="checkRespuesta(this, 'Pregunta 3', 'Guitarra')"><b>Guitarra</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 3', 'Charango')"><b>Charango</b></button>
<p></p>
<button onclick="checkRespuesta(this, 'Pregunta 3', 'Violín')"><b>Violín</b></button>
<p></p>
<div id="resultado-pregunta-3"></div>
</div>
</div>
</div>
<p class="trivializate-box"><a href="index.html">Juega de nuevo</a></p>
<script src="/script.js" defer></script>
</div>
</body>
</html>