-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (108 loc) · 4.44 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Transparentes - Democracia en juego</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rokkitt:wght@300;400;700&display=swap" rel="stylesheet">
<!-- CSS Propio -->
<link rel="stylesheet" href="styles/styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-07VCJGSMEQ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-07VCJGSMEQ');
</script>
</head>
<body>
<!-- Encabezado y Navegación -->
<header class="container">
<nav class="navbar navbar-expand-lg" role="navigation" aria-label="Menú principal">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="img/transparentes-logo.png" alt="Logotipo de Transparentes" width="150">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Abrir menú de navegación">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" href="index.html" aria-current="page">Inicio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="sobre-el-proyecto.html">Sobre el proyecto</a>
</li>
<li class="nav-item boton-cta">
<a class="nav-link btn btn-primary text-white"
href="https://mailchi.mp/71bfb807b29c/boletin-transparentes">Participa</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Contenido Principal -->
<main>
<!-- Imagen de portada -->
<section>
<img src="img/portada.png" alt="Imagen de portada con el mensaje 'Democracia en juego, ciudadanía al mando'"
class="img-fluid w-100">
</section>
<!-- Sección de Información -->
<section class="informacion py-4">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8 text-center">
<img src="img/info.png" alt="Descripción de la iniciativa Transparentes y sus objetivos"
class="img-fluid descripcion">
</div>
</div>
</div>
</section>
<!-- Sección de Call to Action -->
<section class="contenido-inicio-cta">
<div class="container text-center">
<div class="row">
<div class="col-lg-6">
<h2><span>¿Quieres saber más?</span></h2>
</div>
<div class="col-lg-6">
<div class="botones">
<ul>
<li>
<a href="sobre-el-proyecto.html" class="btn">Sobre el proyecto</a>
</li>
<li>
<a class="nav-link btn btn-primary text-white"
href="https://mailchi.mp/71bfb807b29c/boletin-transparentes">Participa</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Pie de Página -->
<footer class="text-center pt-4">
<img src="img/footer.png" alt="Imagen decorativa del pie de página" class="footer-img img-fluid">
<div class="creditos mt-3">
<p>2025 - Todos los derechos reservados</p>
</div>
</footer>
<!-- Bootstrap JS -->
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
</body>
</html>