forked from wilfredofficial63854/AgriConnect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-us.php
More file actions
77 lines (69 loc) · 3.48 KB
/
Copy pathabout-us.php
File metadata and controls
77 lines (69 loc) · 3.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>About AgriConnect</title>
<link rel="stylesheet" href="css/about.css">
<style>
:root {
--primary: #007bff;
--secondary: #6c757d;
}
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}
header {
background-color: var(--primary);
color: #fff;
padding: 20px;
text-align: center;
}
nav {
background-color: var(--secondary);
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
}
nav a {
color: #fff;
text-decoration: none;
font-size: 16px;
margin: 0 10px;
}
main {
padding: 20px;
}
footer {
background-color: var(--primary);
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100px;
}
</style>
</head>
<body>
<header>
<h1>Welcome to AgriConnect</h1>
</header>
<nav>
<a href="index.php">Home</a>
<a href="#">About</a>
<a href="#">Contact</a>
</nav>
<main>
<h2>About Us</h2>
<p>Welcome to our website! We are a team of dedicated professionals who are committed to providing our customers with the best products and services available. Our company was founded on the principles of quality, innovation, and customer satisfaction. We take great pride in our work and strive to exceed our customers' expectations in every way.</p>
<p>Our company specializes in a wide range of products and services, including the sale of vegetables, fruits, and grains. Whether you're in need of fresh produce, healthy snacks, or pantry staples, we've got you covered. Our team of experts has years of experience in their respective fields and is dedicated to providing you with the highest level of service and support.</p>
<p>At our company, we believe in transparency and honesty. We want our customers to know exactly what they're getting when they choose to do business with us. That's why we offer detailed information about our products and services on our website. We also encourage our customers to contact us with any questions or concerns they may have. Our customer service team is available to assist you 24/7.</p>
<p>We understand that our customers have a choice when it comes to their business needs. That's why we go above and beyond to provide exceptional service and support. We believe that building strong relationships with our customers is the key to our success. That's why we strive to provide a personalized experience for each and every one of our customers.</p>
<p>At our company, we're not just about providing products and services. We're about making a positive impact in our community and the world around us. That's why we're committed to environmentally friendly practices and social responsibility. We believe that it's our responsibility to do our part to create a better future for generations to come.</p>
<p>If you're in need of fresh, healthy, and sustainable produce, we invite you to explore our website and learn more about what we have to offer. We're confident that you'll find exactly what you're looking for. And if you have any questions or concerns, don't hesitate to contact us. We're here to help.</p>
<p>Thank you for considering our company for your produce needs. We look forward to serving you.</p>
</main>
</body>
</html>