-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 2.29 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
<!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 Ciclistas</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 LOS CICLISTAS</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-4-detail" target="_blank">Nivel 4</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" id="pregunta"></span>
</div>
<div class="container">
<div id="imagenes-ciclistas"></div>
<div>
<button id="boton-azul" class="guess-button">Azul</button>
<button id="boton-rojo" class="guess-button">Rojo</button>
<button id="boton-verde" class="guess-button">Verde</button></div>
<br>
<div class="msj" id="resultado"></div>
<br>
<button class="guess-button" id="siguiente-pregunta">Volver a jugar</button>
</div>
<br>
<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>