-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductos.html
67 lines (58 loc) · 2.07 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
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="style/reset.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style/style.css">
<title>Productos - Barberia Orinokia </title>
</head>
<header class="header">
<div class="caja">
<div class="float-area">
<img src="imagenespro/logo.png"
class="floating-img" alt="my floating image">
</div>
<div class="animation">
<lottie-player src="/images/88716-barber.json" background="transparent" speed="1" style="width: 300px; height: auto;" loop autoplay></lottie-player>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="productos.html">Productos</a></li>
<li><a href="contacto.html">Contactos</a></li>
</ul>
</nav>
</div>
</header>
<body>
<main>
<ul class="productos">
<li>
<h2>Cabello</h2>
<img src="imagenespro/cabello.jpg" alt="">
<p class="producto-descrip">Con tijera o maquina a gusto del cliente</p>
<p class="producto-precio">10$</p>
</li>
<li>
<h2>Barba</h2>
<img src="imagenespro/barba.jpg" alt="">
<p class="producto-descrip" >Corte y Diseño profesional de barba</p>
<p class="producto-precio">8$</p>
</li>
<li>
<h2>Cabello + Barba</h2>
<img src="imagenespro/cabello+barba.jpg" alt="" srcset="">
<p class="producto-descrip">Corte completo de cabello y barba</p>
<p class="producto-precio">15$</p>
</li>
</ul>
</main>
<footer>
<img src="imagenespro/logo-blanco.png" alt="">
<p class="copyright">© Copyght Barberia Orinokia 2022</p>
</footer>
</body>
<script src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"></script>
</html>