-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Online Shop</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="item">
<img src="https://www.pngitem.com/pimgs/m/479-4795158_ipad-pro-3rd-generation-hd-png-download.png" alt="iPad">
<span class="discount"> -30% </span>
<span class="heart"> ❤ </span>
</div>
<div class="item">
<img src="https://png.pngitem.com/pimgs/s/59-594327_iphone-6s-iphone-6s-all-color-png-transparent.png" alt="iPhone">
<span class="discount"> -5% </span>
<span class="heart"> ❤ </span>
</div>
<div class="item">
<img src="https://png.pngitem.com/pimgs/s/231-2313835_red-beats-studio-3-wireless-red-hd-png.png" alt="headphones">
<span class="discount"> -30% </span>
<span class="heart"> ❤ </span>
</div>
</div>
<!-- Avrei potuto creare un'unica riga, con i sei item affiancati -->
<div class="row">
<div class="item">
<img src="https://www.pngitem.com/pimgs/m/479-4795158_ipad-pro-3rd-generation-hd-png-download.png" alt="iPad">
<span class="discount"> -30% </span>
<span class="heart"> ❤ </span>
</div>
<div class="item">
<img src="https://png.pngitem.com/pimgs/s/59-594327_iphone-6s-iphone-6s-all-color-png-transparent.png" alt="iPhone">
<span class="discount"> -5% </span>
<span class="heart"> ❤ </span>
</div>
<div class="item">
<img src="https://png.pngitem.com/pimgs/s/231-2313835_red-beats-studio-3-wireless-red-hd-png.png" alt="headphones">
<span class="discount"> -30% </span>
<span class="heart"> ❤ </span>
</div>
</div>
</div>
</body>
</html>