-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (54 loc) · 2.47 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
<!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 Círculos de Colores</title>
<link rel="stylesheet" href="style.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 CÍRCULOS DE COLORES</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">¿Eres capaz de saber de qué color es el círculo que te preguntan durante cinco turnos?</span>
<button id="play-again-button">Comenzar</button>
</div>
<div class="container">
<div id="circles-container">
<div id="circle1" class="circle"></div>
<div id="circle2" class="circle"></div>
<div id="circle3" class="circle"></div>
</div>
<div class="pregunta2" id="question"></div>
<div id="buttons-container">
<button id="button1" class="guess-button"></button>
<button id="button2" class="guess-button"></button>
<button id="button3" class="guess-button"></button>
</div>
<div class="msj" id="result"></div>
<br>
<p id="score"></p>
</div>
<script src="juego.js"></script>
<br>
<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>