-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--bootstrap-->
<!-- <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"> -->
<!--SCSS - Sass-->
<link rel="stylesheet" href="./css/style.css" />
<!-- Iconos bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css">
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<title>Ecommerce | Mis Tiendas</title>
</head>
<body class="bg-warning-subtle">
<header class="">
<h1 class="text-center py-5 display-1">Bienvenidos a Mis tiendas</h1>
</header>
<main class="py-5 my-5 ">
<section>
<h1 class="text-center pb-5">Elija una tienda para comprar</h1>
<div class=" d-flex justify-content-center gap-5">
<a href="./page/tiendaLocal.html" class="btn btn-warning btn-lg" target="_blank">Tienda AlaCahufleta</a>
<a href="./page/tiendaApi.html" class="btn btn-warning btn-lg" target="_blank">Tienda Api Fake Store</a>
</div>
</section>
</main>
<footer class="text-center py-5 my-5">
<div class="footer__container d-md-flex justify-content-center py-5 my-5">
<div class="footer__container--marca mt-4 mb-4 fs-3">
© 2023 <span class="footer__container--marca-marca mx-1"></span> |
Creada por
</div>
<div class="footer__container--autor container__autor--name px-3 mt-4 mb-4 fs-3">
<a href="#" class="footer__container--autor-autor link__autor text-secondary">Arguello Soledad</a>
</div>
</div>
</footer>
</body>
</html>