-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplantilla.html
43 lines (40 loc) · 1.3 KB
/
plantilla.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SWEETSTACKS</title>
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="css/header.css" />
<link rel="stylesheet" href="css/footer.css" />
<link rel="shortcut icon" href=".../img/sweepstakes.jpg" type="image/x-icon">
</head>
<body>
<header class="Encabezado">
<img class="logo" src="img//logo.svg" alt="" />
<nav class="menu">
<ul>
<li><a href="#">Acerca de</a></li>
<li><a href="#">Recetas</a></li>
<li><a href="#">Contactanos</a></li>
</ul>
</nav>
</header>
/*AGREGAR CONTENIDO PRINCIPAL*/
<main class="main"></main>
<footer class="footer">
<nav class="pie">
<ul>
<li><a href="#">Privacidad</a></li>
<li><a href="#">Terminos y Condiciones</a></li>
<!-- <li><a href="#">Trabaja con nosotros</a></li> -->
<li><a href="#">Cookies</a></li>
<li><a href="#">Accesibilidad</a></li>
<li><a href="#">Ayuda</a></li>
</ul>
</nav>
<p>© 2024 SWEETSTACKS. Todos los derechos reservados.</p>
<p>Desarrollado por:</p>
</footer>
</body>
</html>