-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (106 loc) · 5.36 KB
/
index.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/style.css">
<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>BOOSHOP</title>
</head>
<body>
<header></header>
<main>
<!-- Immagine 1 -->
<div class="products-container">
<div class="product-card">
<img src="img/1.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/1b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Levi's</h4>
<h3>RELAXED FIT TEE UNISEX</h3>
<span class="rosso"><strong>14,99 $</strong></span>
<span class="sconto">29,99 $</span>
</div>
<span class="sostenibilita">Sostenibilitá</span>
<span class="discount-50">-50%</span>
<span class="heart-card">♥</span>
</div>
<!-- Immagine 2 -->
<div class="product-card">
<img src="img/2.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/2b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Guess</h4>
<h3>ROSES TEE</h3>
<span class="rosso"><strong>20,99 $</strong></span>
<span class="sconto">29,99 $</span>
</div>
<span class="discount-50">-30%</span>
<span class="heart-card">♥</span>
</div>
<!-- Immagine 3 -->
<div class="product-card">
<img src="img/3.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/3b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Come Zucchero Filato</h4>
<h3>Voglia Di Colori Pastello</h3>
<span class="rosso"><strong>129,99 $</strong></span>
</div>
<span class="discount-50">-30%</span>
<span class="heart-card">♥</span>
</div>
<!-- Immagine 4 -->
<div class="product-card">
<img src="img/4.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/4b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Levi's</h4>
<h3>TEE UNISEX</h3>
<span class="rosso"><strong>14,99 $</strong></span>
<span class="sconto">29,99 $</span>
</div>
<span class="sostenibilita">Sostenibilitá</span>
<span class="discount-50">-50%</span>
<span class="heart-card">♥</span>
</div>
<!-- Immagine 5 -->
<div class="product-card">
<img src="img/5.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/5b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Maya Deluxe</h4>
<h3>STRIPE BODICE</h3>
<span class="rosso"><strong>99,99 $</strong></span>
</div>
<span class="heart-card">♥</span>
</div>
<!-- Immagine 6 -->
<div class="product-card">
<img src="img/6.webp" alt="immagine-prodotto1">
<div class="product-overlay">
<img src="img/6b.webp" alt="img2">
</div>
<div class="product-title">
<h4>Esprit</h4>
<h3>Maglione - Black</h3>
<span class="rosso"><strong>29,99 $</strong></span>
</div>
<span class="sostenibilita" id="sustain-6">Sostenibilitá</span>
<span class="heart-card">♥</span>
</div>
</div>
</main>
<footer></footer>
</body>
</html>