-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProductos.html
52 lines (49 loc) · 1.32 KB
/
Productos.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Productos - Barbería Alura</title>
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="Caja">
<h1><img src="imagenes/logo.png"></h1>
<nav>
<ul>
<li> <a href="index.html">Home</a></li>
<li> <a href="Productos.html">Productos </a></li>
<li> <a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</div>
</header>
<main>
<ul class="productos">
<li>
<h2>Cabello</h2>
<img src="imagenes/cabello.jpg"></img>
<p class="producto-descripcion">Con tijera o con maquina, a gusto del cliente</p>
<p class="producto-precio">$10.00</p>
</li>
<li>
<h2>Barba</h2>
<img src="imagenes/barba.jpg"></img>
<p class="producto-descripcion">Corte y diseño profesional de barba</p>
<p class="producto-precio">$08.00</p>
</li>
<li>
<h2>Cabello + Barba</h2>
<img src="imagenes/cabello+barba.jpg"></img>
<p class="producto-descripcion">Paquete completo de cabello y barba</p>
<p class="producto-precio">$15.00</p>
</li>
</ul>
</main>
<footer>
<img src="imagenes/logo-blanco.png"></img>
<p class="copyrigth">© Copyrigth Barbería Alura - 2023</p>
</footer>
</body>
</html>