-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (62 loc) · 1.88 KB
/
index.html
File metadata and controls
73 lines (62 loc) · 1.88 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Farm2Table - Fresh from Farmers</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header -->
<header class="header">
<div class="container header-row">
<a href="index.html" class="no-underline">
<h1 class="logo">Farm2Table 🥗</h1>
</a>
<br>
<sub id="tagline"><b>Connecting Farmers and Consumers, Fairly and Freshly.</b></sub>
<nav class="nav">
<a href="index.html" class="navbar-button">
<div class="nav-item">
<img src="images/homeicon.png" width="30" height="30" id="home_image">
<span class="icon_text">Home</span>
</div>
</a>
<a href="farmers.html" class="navbar-button">
<div class="nav-item">
<img src="images/farmer.png" width="30" height="30" id="farmer_image">
<span class="icon_text">Farmers</span>
</div>
</a>
<a href="cart.html" class="navbar-button">
<div class="nav-item">
<img src="images/cart.png" width="30" height="30" id="cart_image">
<span class="icon_text">Cart (<span id="cart-count">0</span>)</span>
</div>
</a>
<a href="delivery.html" class="navbar-button">
<div class="nav-item">
<img src="images/Delivery.png" width="35" height="35" id="delivery_image">
<span class="icon_text">Delivery</span>
</div>
</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="container">
<h2>Fresh Vegetables:</h2>
<div class="grid" id="veg-grid"></div>
<h2>Fresh Fruits:</h2>
<div class="grid" id="fruit-grid"></div>
<h2>Other Fresh Products:</h2>
<div class="grid" id="other-grid"></div>
<hr>
<div class="potential ads"> ads here </div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container"><small>© 2025 Farm2Table — Farm to Table</small></div>
</footer>
<script src="app.js"></script>
</body>
</html>