-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (53 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Georgiani Faggotini - Home</title>
</head>
<body>
<header class="header">
<h1>Georgiani Faggotini</h1>
<h2>Leading fashion trends since 2023</h2>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Men</a></li>
<li><a href="#">Women</a></li>
<li><a href="#">Children</a></li>
<li><a href="#">Non-binary</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main class="main">
<section class="products">
<!-- Product cards go here -->
<div class="product-card">
<img src="img/il_tinfoglio.png" alt="Il Tinfoglio">
<h2><a>Il Tinfoglio</a></h2>
<p>Price: $4.99</p>
<p>The apex of chapeau perfection. 100% premium-quality aluminium. Made in Italy.</p>
</div>
<div class="product-card">
<img src="img/il_banano.png" alt="Il Banano">
<h2><a>Il Banano</a></h2>
<p>Price: $39.99</p>
<p>Peak exquisiteness of modern neckwear. 95% fine Costa Rican banana, 5% polyester. Made in Italy.</p>
</div>
<div class="product-card">
<img src="img/il_skinno.png" alt="Il Skinno">
<h2><a>Il Skinno</a></h2>
<p>Price: $189.99</p>
<p>Formality and personality had never been so close! 50% top-tier human skin, 50% fine leather fabric. Made in Italy.</p>
</div>
<!-- Add more product cards as needed -->
</section>
</main>
<footer class="footer">
<p>© 2023 Georgiani Faggotini. All rights reserved.</p>
</footer>
</body>
</html>