-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.html
More file actions
79 lines (74 loc) · 2.83 KB
/
products.html
File metadata and controls
79 lines (74 loc) · 2.83 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Erifyli Exports</title>
<link rel="icon" href="images/logo.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="logo-container">
<a href="index.html">
<img src="images/logo.png" alt="Erifyli Exports Logo" class="logo" />
</a>
</div>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<main>
<section class="product-grid-section">
<h2 class="section-title">Our Products</h2>
<div class="product-grid">
<div class="product-card">
<img src="images/kiwi1.jpg" alt="Fruit 1">
<div class="product-info">
<h3>Kiwi</h3>
<p>October - May</p>
</div>
</div>
<!-- <div class="product-card">
<img src="images/kiwi2.jpg" alt="Fruit 2">
<div class="product-info">
<h3>Fruit Name</h3>
<p>Harvest Period</p>
</div>
</div>
<div class="product-card">
<img src="images/kiwi1.jpg" alt="Fruit 3">
<div class="product-info">
<h3>Fruit Name</h3>
<p>Harvest Period</p>
</div>
</div>
<div class="product-card">
<img src="images/kiwi2.jpg" alt="Fruit 4">
<div class="product-info">
<h3>Fruit Name</h3>
<p>Harvest Period</p>
</div>
</div> -->
<div class="product-card">
<img src="images/fruits.png" alt="multiple fruits">
<div class="product-info">
<h3>Other Fresh Produce</h3>
<p>Through our trusted network of suppliers, we can also provide a variety
of other fresh
produce upon request.
If you are interested, please contact us and we will be glad to share more information.</p>
</div>
</div>
</div>
</section>
</main>
<footer>
<p>© 2026 Erifyli Exports. All rights reserved.</p>
</footer>
</body>
</html>