-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproducto.html
32 lines (29 loc) · 1.01 KB
/
producto.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
<!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 rel="stylesheet" href="css/Normalize.css">
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/Style.css">
<title>FrontEndStore</title>
</head>
<body>
<header class="header">
<a href="index.html">
<img class="header__logo" src="img/logo.png" alt="logotipo">
</a>
</header>
<nav class="navegacion">
<a class="navegacion__enlace navegacion__enlace--activo" href="index.html">Tienda</a>
<a class="navegacion__enlace" href="nosotros.html">Nosotros</a>
</nav>
<main class="contenedor">
<h1>Producto</h1>
</main>
<footer class="footer">
<p class="footer__texto">Front End Store - Todos los derechos reservados. 2022</p>
</footer>
</body>
</html>