-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (78 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<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">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<!--link del css-->
<link rel="stylesheet" href="../curso/css/stylee.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css">
<title>The Coquitos..</title>
</head>
<body>
<!--LOGO-->
<header>
<div class="nav flex-column text-center">
<a href="../curso/index.html"><img src="..//curso/img/logo.png" alt="Logo" width="200" height="125"></a>
<h1 class="fuente">DE COQUITOS..</h1>
<h2 class="fuente">Diseño y Arte</h2>
<h2 class="">Artistica</h2>
</div>
</header>
<!--LISTA DE PRODUCTOS-->
<main >
<div class="menu">
<div>
<div class="card">
<a href="../curso/pages/page2.html"><img class="card-img-top " src="../curso/img/bandeja1.jpg" alt="Bandejas"></a>
<div class="card-body text-center ">
<a href="../curso/pages/page2.html" class="btn btn-primary">BANDEJAS</a>
</div>
</div>
</div>
<div class="">
<div class="card">
<a href="../curso/pages/page3.html"><img class="card-img-top"src="../curso/img/baul1.jpg" alt="baul"></a>
<div class="card-body text-center">
<a href="../curso/pages/page3.html" class="btn btn-primary">BAULES</a>
</div>
</div>
</div>
<div class="">
<div class="card">
<a href="../curso/pages/page4.html"><img class="card-img-top" src="../curso/img/caja1.jpg" alt="cajas"></a>
<div class="card-body text-center">
<a href="../curso/pages/page4.html" class="btn btn-primary">CAJAS</a>
</div>
</div>
</div>
<div class="">
<div class="card">
<a href="../curso/pages/page5.html"><img class="card-img-top" src="../curso/img/te1.jpg" alt="Cajas de TE" ></a>
<div class="card-body text-center">
<a href="../curso/pages/page5.html" class="btn btn-primary">CAJAS DE TE</a>
</div>
</div>
</div>
</div>
<h2 class="fuente frase">Elegi lo que quieras...</h2>
</main>
<!--PIE DE PAGINA-->
<footer>
<div class="pie">
<a href="../curso/index.html" class="text-dark ">
<img alt="logo" src="../curso/img/logo.png" width="30px" />
<span class="ms-4 h5 font-weight-bold">De Coquitos</span>
</a>
<small>© Jose Maria Lopez, 2023. All rights reserved.</small>
<div class="logowhat">
<button class="btn btn-primary btn-lg btn-floating ">
<i class="bi bi-whatsapp"></i>
</button>
</div>
</div>
</footer>
</body>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</html>