-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (61 loc) · 2.75 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JUEGO DE LOS 10 PERROS</title>
<link rel="stylesheet" href="contar5.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 LOS 10 PERROS</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-7-detail" target="_blank">Nivel 7</a></b>
de la materia <a title="Matemáticas" href="https://axelcotongutierrez.github.io/learningmathematicas/tags/?tag=matemáticas" target="_blank"><img class="center-block img-responsive" width="30" alt="Matemáticas" src="/learningmathematicas/assets/images/pages/figuras/Matematicas.png"></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">¿Eres capaz de contar hasta diez perros durante cinco turnos sin equivocarte?</span>
<button id="play-again-button" style="display: none;">Volver a jugar</button>
</div>
<div class="container">
<div id="buttons-container">
<button class="guess-button">1</button>
<button class="guess-button">2</button>
<button class="guess-button">3</button>
<button class="guess-button">4</button>
<button class="guess-button">5</button>
<button class="guess-button">6</button>
<button class="guess-button">7</button>
<button class="guess-button">8</button>
<button class="guess-button">9</button>
<button class="guess-button">10</button>
</div>
<br>
<!-- Ponemos las diez opciones entre ellas la verdadera"-->
<div id="image-container"></div>
<span class="msj" id="result">
<!-- Desplegamos el mensaje "Excelente o Inténtalo de nuevo"-->
</span>
<br>
<span class="msj" id="score">
</span>
</div>
</div>
<script src="contar5.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>