-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
59 lines (51 loc) · 2.01 KB
/
home.html
File metadata and controls
59 lines (51 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<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>User Homepage</title>
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/d9f55f49c0.js" crossorigin="anonymous"></script>
</head>
<body>
<section id="header">
<a href="#"><img src="logo1.png" class="logo" alt="Logo"></a>
<div id="navbar">
<ul class="nav-links">
<li><a class="active" href="home.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="categories.html">Categories</a></li>
<li><a href="about.html">About</a></li>
<li><a href="review.html">Review</a></li>
</ul>
<ul class="nav-icons">
<li><a href="map.html"><i class="fa-solid fa-location-dot"></i></a></li>
<li><a href="search.html"><i class="fa-solid fa-magnifying-glass"></i></a></li>
<li><a href="cart.html"><i class="fa-solid fa-cart-shopping"></i></a></li>
<li><a href="profile.html"><i class="fa-solid fa-user"></i></a></li>
</ul>
</div>
</section>
<section id="hero-container">
<!-- Left Section -->
<div id="hero-left">
<h2>Fastest</h2>
<h1>Delivery &</h1>
<h2>Easy Pickup</h2>
</div>
<!-- Right Section -->
<div id="hero-right"></div>
</section>
<footer>
<p>© FarmPure. All rights reserved.</p>
<div class="social-icons">
<a href="#"><i class="fa-brands fa-facebook"></i></a>
<a href="#"><i class="fa-brands fa-twitter"></i></a>
<a href="#"><i class="fa-brands fa-instagram"></i></a>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>