-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmujer.html
83 lines (67 loc) · 2.57 KB
/
mujer.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TIENDA AFA-MUJER</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="paginas">
<header>
<H1>Mujer</H1>
<div class="logo">
<img src="logo/logo3.png" alt="LOGOTIENDA">
</div>
<nav class="direcciones">
<ul class="barrainicio">
<li><a href="index.html" class="nav-link">Inicio</a></li>
<li><a href="hombre.html" class="nav-link">Hombre</a></li>
<li><a href="mujer.html" class="nav-link">Mujer</a></li>
<li><a href="infantil.html" class="nav-link">Infantil</a></li>
<li><a href="accesorios.html" class="nav-link">Accesorios</a></li>
</ul>
</nav>
<div class="container-icono">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-6 h-6">
<path stroke-linecap="round" stroke-linejoin="round" d="M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 00-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 00-16.536-1.84M7.5 14.25L5.106 5.272M6 20.25a.75.75 0 11-1.5 0 .75.75 0 011.5 0zm12.75 0a.75.75 0 11-1.5 0 .75.75 0 011.5 0z" />
</svg>
</div>
</header>
<main>
<div class="container-item">
<div class="item">
<figure>
<img src="ropamujer/camperamujer.png" alt="CAMPERA MUJER">
</figure>
</div>
<div class="info-producto">
<h2>Campera</h2>
<p class="precio">$55.000</p>
<button>Añadir al carrito</button>
</div>
<div class="item">
<figure>
<img src="ropamujer/remeramujer.png" alt="campera hombre">
</figure>
</div>
<div class="info-producto">
<h2>Camiseta</h2>
<p class="precio">$25.000</p>
<button>Añadir al carrito</button>
</div>
<div class="item">
<figure>
<img src="ropamujer/pantalonmujer.png" alt="campera hombre">
</figure>
</div>
<div class="info-producto">
<h2>Pantalon</h2>
<p class="precio">$20.000</p>
<button>Añadir al carrito</button>
</div>
</div>
</main>
<footer>
</footer>
</body>
</html>