-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex11.html
More file actions
38 lines (31 loc) · 1.68 KB
/
index11.html
File metadata and controls
38 lines (31 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url("background1.jpg"); /* Replace 'background.jpg' with your image name or URL */
background-size: cover; /* Ensures the image covers the entire background */
background-position: center; /* Centers the background image */
background-repeat: no-repeat; /* Prevents the image from repeating */
background-attachment: fixed; /* Keeps the background fixed during scrolling */
color: white; /* Makes text readable against a dark background */
}
</style>
<title>FarmPure</title>
</head>
<body>
<h1>WELCOME TO FarmPure</h1>
<h2>We Bring the <b>Farm</b> <i>Closer</i> to Your <b>Kitchen</b></h2>
<p>Welcome to FarmPure, your trusted farm-to-kitchen service that brings the freshest, most natural produce straight to your doorstep. At FarmPure, we work directly with local farmers to deliver handpicked fruits, vegetables, and groceries that are grown with care and sustainability. Our mission is to provide you with nutritious, farm-fresh products while supporting local agriculture and reducing environmental impact. Experience the purity of fresh, wholesome food that goes from farm to your kitchen, effortlessly and conveniently, with FarmPure.</p>
<a href="login_signup.html" target=_self title="This takes you to the farmer page">
LOGIN
</a>
<!-- Adds space between the two links -->
<a href="login_signup.html" target=_self title="This takes you to the customer page">
SIGN UP
</a>
</body>
</html>