-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
134 lines (130 loc) · 4.34 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width initial-scale=1.0" />
<title>Juego Mentalista</title>
<link rel="stylesheet" href="./CSS/reset.css" />
<link rel="stylesheet" href="./CSS/styles.css" />
<link rel="stylesheet" href="./CSS/footer.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Poppins&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div class="superiorcontainer">
<div class="container">
<a href="https://www.aluracursos.com/" target="_blank">
<img
src="https://www.aluracursos.com/assets/img/home/alura-logo.1686744883.svg"
alt=""
class="alura-latam-logo"
/>
</a>
<h1 class="page-title">Mentalista</h1>
<img
src="https://user-images.githubusercontent.com/121910576/257302088-d2a9edb6-75e5-4118-aaba-6f53da7715dc.png"
class="page-logo"
alt=""
/>
</div>
<div class="contenido">
<label class="contenido_titulo" for="contenido_inputnumero"
>Ingresa un número entre 1 y 1000
<img
style="width: 2rem; margin-bottom: -5px"
src="https://img.icons8.com/stickers/100/hand-down.png"
alt="hand-down"
/></label>
<input
class="contenido_inputnumero"
type="number"
id="contenido_inputnumero"
min="1"
max="1000"
title="El valor debe estar en el rango de 1 a 1000. Solo números enteros."
/>
<p class="contenido_descripcion">
Tienes un número de intentos igual a
<span
style="
font-weight: 800;
font-size: 1.5rem;
text-decoration: underline;
"
>5</span
>, después de eso, el input se bloquea y el botón Adivinar también se
bloquea. Para resetear el número de intentos debes hacer click en el
botón
<span
style="
font-weight: 700;
color: yellow;
font-family: 'carter', sans-serif;
letter-spacing: 2px;
"
>Resetear</span
>
</p>
<p class="contenido_numerointentos">
Tu número de intentos restantes es de:
<span id="numerointentosDisplay">5</span>
</p>
<p class="contenido_numerovecesnumeroaleatorio">
El porcentaje de intentos hasta alcanzar el número aleatorio es de:
</p>
<p id="numerovecesnumeroaleatorio">100%</p>
<div class="contenido_botones">
<button
class="contenido_botones_boton"
title="Haz click aquí para adivinar el número"
>
¡ Adivinar ! 🔮
</button>
<button
class="contenido_botones_boton contenido_botones_boton__reset"
title="Haz click para resetear el número de intentos"
>
Resetear 🔄
</button>
</div>
</div>
</div>
<footer>
<a href="https://linktr.ee/waldohidalgo" target="_blank"
><img src="./img/FirmaWaldo.png" width="20%"
/></a>
<p>
<span style="font-weight: 700">Juego</span> desarollado 100% por
<a
href="https://linktr.ee/waldohidalgo"
style="color: yellow; font-family: carter"
>Waldo Hidalgo Oyarce</a
>
</p>
<div class="redes sociales">
<a
href="https://www.linkedin.com/in/waldo-hidalgo-oyarce/"
target="_blank"
><i class="fa fa-linkedin fa-xl"></i
></a>
<a href="https://github.com/waldohidalgo/" target="_blank"
><i class="fa fa-github"></i
></a>
<a href="https://www.instagram.com/clasestutoriaswaldo/" target="_blank"
><i class="fa fa-instagram"></i
></a>
<a href="https://www.facebook.com/waldohidalgooyarcej" target="_blank"
><i class="fa fa-facebook"></i
></a>
</div>
</footer>
<script src="./js/programming.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>