-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.63 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
<!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="catalogo.html">Catálogo</a></li>
<li><a href="#">Principal</a></li>
</ul>
</div>
</header>
<!-- Sección 1 - Principal -->
<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>
</div>
</section>
</main>
<!-- Sección 1 End - Principal -->
<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>