-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (72 loc) · 2.84 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<!--Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<!-- Custom CSS -->
<link rel="stylesheet" type="text/css" href="./css/main.css" />
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="container mt-3 mx-3">
<strong style="justify-content: end" id="tiempo">Hoy : parcialmente nublado</strong>
</div>
</nav>
<!-- Contenido Principal -->
<div class="container mx-auto text-center mt-5" style="
border: 1px solid #ccc;
border-radius: 10px;
background-color: white;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
">
<div class="my-5">
<h3>
Preparado para reir?
<img src="./img/icon.png" width="30px" alt="icon" />
</h3>
<p class="text-center mt-5 fs-4 mx-3" id="jokeFixed" style="
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
sans-serif;
">
"Aqui va primer chiste"
</p>
</div>
<!-- Botón Siguiente Chiste -->
<button class="btn btn-info mt-3 mb-5" type="button"
style="color: white; padding-left: 30px; padding-right: 30px">
Siguiente chiste
</button>
</div>
<!-- Sección de Votación -->
<div class="container d-flex justify-content-center mt-5 col-sm-12">
<div class="rate bg-info py-3 text-white mt-0" style="border-radius: 10px; padding: 20px; ">
<p class="text-center fs-5 " id="jokeVote" style="
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
sans-serif; margin-bottom: 0;
">
Do you like a joke you see?<br />Vote!
</p>
<div class="container btn-group justify-content-center">
<button type="button" class="btn" id="1" style="font-size: 30px">
😠
<span class="visually-hidden">No me gusta</span>
</button>
<button type="button" class="btn" id="2" style="font-size: 30px">
😐
<span class="visually-hidden">Meh</span>
</button>
<button type="button" class="btn" id="3" style="font-size: 30px">
😃
<span class="visually-hidden">Me gusta mucho</span>
</button>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>