-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
210 lines (198 loc) · 6.83 KB
/
Copy pathindex.html
File metadata and controls
210 lines (198 loc) · 6.83 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Práctico de la materia." />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="shortcut icon" href="/images/compras.png" type="image/x-icon" />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"
/>
<link rel="stylesheet" href="./style/style.css" />
<title>AniExpress</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg fixed-top" id="navbar">
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
>
<span class="navbar-toggler-icon"></span>
</button>
<a class="navbar-brand" href="#">AniExpress</a>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" href="#" aria-current="page">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Productos</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#footer">Contacto</a>
</li>
</ul>
</div>
<button
id="btnSideBar"
class="btn position-relative"
type="button"
data-bs-toggle="offcanvas"
data-bs-target="#offcanvasRight"
>
<i class="bi bi-cart"></i>
</button>
</div>
</nav>
</header>
<main>
<section class="container" style="margin-top: 80px">
<div
id="cards"
class="row row-cols-1 row-cols-md-3 g-4 m-1"
aria-labelledby="cards-section"
></div>
</section>
<section>
<div
id="modal"
class="modal"
tabindex="-1"
role="dialog"
aria-hidden="true"
></div>
</section>
<aside>
<div
class="offcanvas offcanvas-end"
tabindex="-1"
id="offcanvasRight"
aria-labelledby="offcanvasRightLabel"
>
<div class="offcanvas-header">
<h5 class="offcanvas-title" id="offcanvasRightLabel">
Mi carrito:
</h5>
<button
type="button"
class="btn-close"
data-bs-dismiss="offcanvas"
aria-label="Close"
></button>
</div>
<div class="offcanvas-body" id="sideBarCart"></div>
</div>
</aside>
<section>
<div
class="toast-container position-fixed top-0 start-50 translate-middle-x p-3"
id="toast"
role="alert"
aria-live="assertive"
aria-atomic="true"
></div>
</section>
</main>
<footer id="footer">
<div class="container">
<section class="redes" aria-labelledby="social-media-links">
<h3 id="social-media-links">Nuestras redes</h3>
<div class="social-icons">
<a
href="https://www.instagram.com"
target="_blank"
title="Instagram"
>
<img src="./images/instagram.jpg" alt="Instagram" />
</a>
<a href="https://www.facebook.com" target="_blank" title="Facebook">
<img src="./images/facebook.jpg" alt="Facebook" />
</a>
<a
href="https://wa.me/5493517551461"
target="_blank"
title="Whatsapp"
>
<img src="./images/whatsapp1.jpg" alt="Whatsapp" />
</a>
<a
href="mailto:priscila.d.pace@gmail.com?Subject=Consulta"
target="_blank"
title="Enviar email"
>
<img src="./images/gmail.jpg" alt="Enviar Email" />
</a>
<a
href="https://www.linkedin.com/in/priscila-denise-pace/"
target="_blank"
title="Linkedin"
>
<img src="./images/linkedin.jpg" alt="Linkedin" />
</a>
</div>
</section>
<section class="form-section">
<h4>¿Quieres trabajar en AniExpress?</h4>
<form id="contact-form">
<div class="form-group">
<label for="name">Nombre</label>
<input type="text" id="name" name="name" required />
</div>
<div class="form-group">
<label for="email">Correo</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-group">
<label for="linkedin">LinkedIn</label>
<input type="url" id="linkedin" name="linkedin" required />
</div>
<button type="submit">Enviar</button>
</form>
<p id="success-message" style="display: none">Mensaje enviado</p>
</section>
<section class="mapa" aria-labelledby="location-map">
<h5 id="location-map">Donde estamos:</h5>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d108977.06038912067!2d-64.26438422252431!3d-31.399434162351472!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x9432985f478f5b69%3A0xb0a24f9a5366b092!2zQ8OzcmRvYmE!5e0!3m2!1ses!2sar!4v1647366496040!5m2!1ses!2sar"
width="100%"
height="150"
style="border: 0"
allowfullscreen=""
loading="lazy"
title="Mapa de ubicación"
>
</iframe>
</section>
</div>
</footer>
<script>
document
.getElementById("contact-form")
.addEventListener("submit", function (event) {
event.preventDefault();
document.getElementById("success-message").style.display = "block";
this.reset();
});
</script>
<script type="module" src="./index.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</body>
</html>