-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos.html
59 lines (54 loc) · 2.09 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
53
54
55
56
57
58
59
<!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">
<title>Productos Barberia Alura</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="productos.css">
<link rel="shortcut icon" href="imagenes/logo.png" type="image/x-icon">
</head>
<body>
<header>
<div class="caja">
<h1><img src="/imagenes/logo-blanco.png"></h1>
<nav>
<ul class="navegacion">
<li><a href="index.html">Home</li></a>
<li><a href="productos.html">Productos</li></a>
<li><a href="contacto.html">Contacto</li></a>
</ul>
</nav>
</div>
</header>
<main>
<p class="servicios">Se cuenta con los siguientes servicios:</p>
<ul class="productos">
<li>
<h2>Cabello</h2>
<img class="imagen-producto" src="imagenes/barba.jpg">
<p class="producto-descripcion">Corte con tijera o máquina eléctrica</p>
<p class="producto-precio">$ 10.00</p>
</li>
<li>
<h2>Barba</h2>
<img class="imagen-producto" src="imagenes/cabello.jpg">
<p class="producto-descripcion">Corte y diseño profesional de barba</p>
<p class="producto-precio">$ 15.00</p>
</li>
<li>
<h2>Cabello-Barba</h2>
<img class="imagen-producto" src="imagenes/cabello+barba.jpg">
<p class="producto-descripcion">Paquete completo de cabello y barba</p>
<p class="producto-precio">$ 20.00</p>
</li>
</ul>
</main>
<footer>
<img src="imagenes/logo-blanco.png">
<p class="copyright">© Copyright Jean Carlos Muñoz Reyes - 2023</p>
</footer>
</body>
</html>