-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (68 loc) · 3.78 KB
/
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
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
73
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Partes del Cuerpo Humano</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="nav.css">
<link rel="icon" href="icon.png" type="image/png">
<script src="https://axelcotongutierrez.github.io/learningmathematicas/assets/js/header.js"></script>
</head>
<body>
<header>
<div id="header-placeholder"></div>
<h1 style="text-align: center;">JUEGO DE LAS PARTES DEL CUERPO HUMANO</h1>
</header>
<br>
<p class="textosuperior" style="text-align: center;">Este contenido se vincula con el
<b><a href="https://axelcotongutierrez.github.io/learningmathematicas/projects/Niveles/#level-5-detail" target="_blank">Nivel 5</a></b>
de la materia <a title="Matemáticas" href="https://axelcotongutierrez.github.io/learningmathematicas/tags/?tag=biología" target="_blank"><img class="center-block img-responsive" width="30" alt="Biología" src="/learningmathematicas/assets/images/pages/figuras/Biología.jpg"></a>
y es perteneciente al curso <a title="Infantil" href="https://axelcotongutierrez.github.io/learningmathematicas/tags/?tag=infantil" target="_blank"><img class="center-block img-responsive" style="display: inline-block;" width="30" alt="Infantil" src="/learningmathematicas/assets/images/pages/figuras/infantil.png"></a>
</p>
<br>
<div class="container2">
<span class="pregunta">Arrastra las palabras a la parte correcta del cuerpo</span>
</div>
<div class="container">
<div id="game-area" style="position: relative;">
<img src="cuerpo-humano.jpg" id="human-body" alt="Imagen del cuerpo humano">
<div class="word-slot" id="head-slot"></div>
<div class="word-slot" id="cuello-slot"></div>
<div class="word-slot" id="pecho-slot"></div>
<div class="word-slot" id="tronco-slot"></div>
<div class="word-slot" id="codo-slot"></div>
<div class="word-slot" id="brazo-slot"></div>
<div class="word-slot" id="mano-slot"></div>
<div class="word-slot" id="pierna-slot"></div>
<div class="word-slot" id="rodilla-slot"></div>
<div class="word-slot" id="pie-slot"></div>
</div>
<div id="words-area">
<img src="cabeza.jpg" class="draggable-word" draggable="true" alt="Cabeza">
<img src="cuello.jpg" class="draggable-word" draggable="true" alt="Cuello">
<img src="pecho.jpg" class="draggable-word" draggable="true" alt="Pecho">
<img src="tronco.jpg" class="draggable-word" draggable="true" alt="Tronco">
<img src="codo.jpg" class="draggable-word" draggable="true" alt="Codo">
<img src="brazo.jpg" class="draggable-word" draggable="true" alt="Brazo">
<img src="mano.jpg" class="draggable-word" draggable="true" alt="Mano">
<img src="pierna.jpg" class="draggable-word" draggable="true" alt="Pierna">
<img src="rodilla.jpg" class="draggable-word" draggable="true" alt="Rodilla">
<img src="pie.jpg" class="draggable-word" draggable="true" alt="Pie">
</div>
<button id="check-button" class="guess-button">Comprobar</button>
<br>
<div class="msj" id="result"></div>
<br>
<button id="reset-button" class="guess-button">Volver a Jugar</button>
</div>
<script src="script.js"></script>
<br>
<footer class="footer">
<ul class="footer-links">
<li><a href="http://github.com/AxelCotonGutierrez"> <img src="githubinverseicon.jpg"></a></li>
<li><a href="https://www.youtube.com/@learningmathematicas"> <img src="youtubeinverseicon.jpg"></i></a></li>
</ul>
</footer>
</body>
</html>