forked from AryanVBW/HackSquad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (47 loc) · 1.51 KB
/
about.html
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
<html>
<head>
<title>About Us - AgriEmpower</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
</header>
<main>
<section class="about-us">
<div class="container">
<h1>About AgriEmpower</h1>
<p>Our mission is to empower farmers with technology and knowledge, fostering a sustainable and profitable agricultural ecosystem.</p>
<h2>Our Vision</h2>
<p>We envision a future where every farmer has the tools and resources to thrive, contributing to food security and economic growth for all.</p>
<h2>Our Team</h2>
<div class="team-members">
<div class="member">
<img src="team-member1.jpg" alt="Team Member 1">
<h3>John Doe</h3>
<p>CEO & Founder</p>
</div>
<div class="member">
<img src="team-member2.jpg" alt="Team Member 2">
<h3>Jane Smith</h3>
<p>CTO</p>
</div>
</div>
</div>
</section>
<section class="contact">
<div class="container">
<h2>Contact Us</h2>
<p>We'd love to hear from you! Feel free to reach out with any questions or feedback.</p>
<form>
<input type="text" placeholder="Your Name">
<input type="email" placeholder="Your Email">
<textarea placeholder="Your Message"></textarea>
<button type="submit">Send</button>
</form>
</div>
</section>
</main>
<footer>
</footer>
</body>
</html>