-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar-cards.html
124 lines (118 loc) · 3.77 KB
/
navbar-cards.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
<!DOCTYPE html>
<html lang="es-cl">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SKYP - Planifica</title>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-primary" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">SKYP</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" aria-current="page" href="#"
>Planifica tu Viaje</a
>
<a class="nav-link" href="#">Administra tu vuelo</a>
<a class="nav-link" href="#">Check-In</a>
<a class="nav-link" href="#">Centro de Ayuda</a>
</div>
</div>
</div>
</nav>
<h1 class="ms-4 mt-5 mb-4">Viaja con precios ultra rebajados a los mejores destinos</h1>
</header>
<main>
<section>
<div class="container-fluid px-5">
<div class="row d-flex gap-3">
<div class="col d-flex justify-content-center">
<div class="card" style="width: 18rem">
<img
src="./assets/img/buenos-aires.jpg"
class="card-img-top"
alt="Buenos Aires"
/>
<div class="card-body">
<h5 class="card-title">Buenos Aires</h5>
<p class="card-text">
Some quick example text to build on the card title and make
up the bulk of the card's content.
</p>
</div>
<div class="card-footer">
<a href="#" class="card-link">Ver más</a>
</div>
</div>
</div>
<div class="col d-flex justify-content-center">
<div class="card" style="width: 18rem">
<img
src="./assets/img/machu-pichu.jpg"
class="card-img-top"
alt="Machu Picchu"
/>
<div class="card-body">
<h5 class="card-title">Machu Picchu</h5>
<p class="card-text">
Some quick example text to build on the card title and make
up the bulk of the card's content.
</p>
</div>
<div class="card-footer">
<a href="#" class="card-link">Ver más</a>
</div>
</div>
</div>
<div class="col d-flex justify-content-center">
<div class="card" style="width: 18rem">
<img
src="./assets/img/rio-de-janeiro.jpg"
class="card-img-top"
alt="Río de Janeiro"
/>
<div class="card-body">
<h5 class="card-title">Río de Janeiro</h5>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
Dolorum voluptatum cumque sunt voluptates officia enim illo,
ab fugiat beatae? Perspiciatis nisi vero eos id cum!
Dolores, nemo! Aut, odio assumenda?
</p>
</div>
<div class="card-footer">
<a href="#" class="card-link">Ver más</a>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
</body>
</html>