-
Notifications
You must be signed in to change notification settings - Fork 0
/
catalogo.html
88 lines (85 loc) · 2.94 KB
/
catalogo.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="en">
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8" />
<head>
<title>Pasteleria Sora</title>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/main.css" />
<link rel="stylesheet" href="css/footer.css" />
</head>
<body>
<header id="header">
<div class="header__logo-content">
<img src="./img/logo.png" alt="delicias logo" />
</div>
<div class="header__navbar-content">
<ul>
<li><a href="pedidos.html">Pedidos</a></li>
<li><a href="#">Catálogo</a></li>
<li><a href="index.html">Principal</a></li>
</ul>
</div>
</header>
<!-- Sección 2 - Catálogo -->
<main>
<section class="top-product-container">
<div class="top-product-container--title">
<h2>Nuestros productos más solicitados</h2>
<p>
Estos son los productos que más solicitan nuestros clientes. No te
quedes sin probarlos.
</p>
<section class="plans__card-container">
<article class="plans__card">
<div class="inside-card">
<figure class="fresa"></figure>
<h3>Pastel de Fresa</h3>
<p>*Ahorras $129 comparado al plan mensual.</p>
<button href="#" class="plans-cards--card-button">
Escoger este <span class="arrow-right"></span>
</button>
</div>
</article>
<article class="plans__card">
<div class="inside-card">
<figure class="chocolate"></figure>
<h3>Pastel de Chocolate</h3>
<p>*Ahorras $129 comparado al plan mensual.</p>
<button href="#" class="plans-cards--card-button">
Escoger este <span class="arrow-right"></span>
</button>
</div>
</article>
<article class="plans__card">
<div class="inside-card">
<figure class="cerezas"></figure>
<h3>Pastel de Cerezas</h3>
<p>*Ahorras $129 comparado al plan mensual.</p>
<button href="#" class="plans-cards--card-button">
Escoger este <span class="arrow-right"></span>
</button>
</div>
</article>
</section>
</div>
</section>
</main>
<!-- End Sección 2 - Catálogo -->
<footer id="footer">
<section class="footer__left">
<ul>
<li class="footer__associates">
<a href="#">LinkedIn</a>
</li>
<li class="footer__associates">
<a href="#">CrunchBase</a>
</li>
<li class="footer__associates">
<a href="#">HackerNews</a>
</li>
</ul>
</section>
</footer>
</body>
</html>