-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
88 lines (78 loc) · 3.69 KB
/
main.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="./css/mainStyle.css">
</head>
<body background="Secciones/img/FondoPantallaInicio.jpg">
<header class="header">
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Left links -->
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
</ul>
<!-- Boton sobre nosotros -->
<div class="d-flex align-items-right">
<a href="./sobreNosotros.html">
<button type="button" class="btn btn-primary px-3 me-2">
<i class="fa-solid fa-circle-info navbar-nav me-auto mb-2 mb-lg-0"></i> Sobre nosotros
</button>
</a>
</div>
</nav>
</header>
<div class="container w-100">
<div class="container w-100">
<!--Imagen de titulo de la Web-->
</div>
<div class="col-12 d-flex justify-content-center">
<div class="titulo">
<img src="Secciones/img/TituloWeb.png">
</div>
</div>
<div class="row d-flex justify-content-center align-items-center">
<!--Botones a secciones-->
<!--Boton a seccion Calido-->
<div class="col-12 col-sm-5 col-md-5 col-lg-3 rounded-circle sound">
<a class="d-flex justify-content-center rounded-circle" href="Secciones/Calido/Calido.html">
<img class="imagen IconImg rounded-circle" src="Secciones/img/Calido.png">
</a>
<h4 class="text-center">CALIDO</h4>
</div>
<!--Boton a seccion Salvaje-->
<div class="col-12 col-sm-5 col-md-4 col-lg-3 rounded-circle sound">
<a class="d-flex justify-content-center rounded-circle" href="Secciones/Salvaje/Salvaje.html">
<img class="imagen IconImg rounded-circle" src="Secciones/img/Salvaje.png">
</a>
<h4 class="text-center">SALVAJE</h4>
</div>
<!--Boton a seccion Agua-->
<div class="col-12 col-sm-5 col-md-5 col-lg-3 rounded-circle sound">
<a class="d-flex justify-content-center rounded-circle" href="Secciones/Agua/Agua.html">
<img class=" imagen IconImg rounded-circle" src="Secciones/img/Agua.png">
</a>
<h4 class="text-center">AGUA</h4>
</div>
<!--Boton a seccion Aire-->
<div class="col-12 col-sm-5 col-md-4 col-lg-3 rounded-circle sound">
<a class="d-flex justify-content-center rounded-circle" href="Secciones/Aire/Aire.html">
<img class="imagen IconImg rounded-circle" src="Secciones/img/aire.png">
</a>
<h4 class="text-center">AIRE</h4>
</div>
<!--Boton a seccion Salud-->
<div class="col-12 col-sm-6 col-md-4 col-lg-12 sound rounded-circle salud">
<a class="d-flex justify-content-center rounded-circle" href="Secciones/Salud/Salud.html">
<img class="imagen IconImg rounded-circle" src="./Secciones/img/Salud.png">
</a>
<h4 class="text-center">SALUD</h4>
</div>
</div>
</div>
</div>
</body>
</html>