-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
94 lines (91 loc) · 4.21 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Farm House</title>
<link rel="stylesheet" href="./assets/css/lib/all.min.css" />
<link rel="stylesheet" href="./assets/css/lib/bootstrap.min.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<script src="./assets/js/lib/all.min.js"></script>
<script src="./assets/js/lib/jquery-3.4.1.min.js"></script>
<script src="./assets/js/lib/bootstrap.min.js"></script>
<script src="./assets/js/main.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-md navbar-custom sticky-top">
<a class="navbar-brand" href="index.html"><img src="./Images/Farm House.png" alt="farm house" width="100px" height="100px" /></a>
<button id="toggler" class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html">Services</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Apply For
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="#">Fertilizer</a>
<a class="dropdown-item" href="#">Herbicide</a>
<a class="dropdown-item" href="#">Pesticide</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact Us</a>
</li>
<div class="nav-link contact-phone">
<a href="tel:+91-9996320362"><i class="fa fa-phone"></i>+234-810-683-0744</a><br>
</div>
</ul>
<a href="sign-in.html" class="btn btn-outline-light my-2 my-sm-0">Sign Up</a
>
<a href="log-in.html" class="btn btn-outline-light my-2 my-sm-0"
>Log In</a
>
</div>
</nav>
<div class="container">
<h2 id="about">About Us</h2>
<p>
Located far away in Pankshin on the Plateau within the Middle Belt, The
Farm House acts as a middle man between farmers in rural areas and
cunsumers in urbarn areas. The major purpose of the farm house is to:
<ul>
<li>
Limit food wastage when farmers harvest their crops and there are no
people to buy.
</li>
<li>
Reduce poverty among farmers since they beat down
their prices so as to sell out their produce while fresh.
</li>
<li>
Curb food
scarcity in urban areas due to the inability to get farm produce.
</li>
</ul>
As a result of this, farming continues round the yea as farmers are not
afraid that what they harvest will spoil since The Farm house keeps
proper storage of all farm produce. Those in urban areas have constant
supply of farm produce as The Farm House gives constant supply to
markets, individuals and superstores.
</p>
</div>
<footer id="footer" class="py-4 bg-dark text-white-50">
<div class="container text-center">
<small>The Farm House, No. 2-8 Gadan Street, Pankshin Main Town, Plateau State, Nigeria <br>Copyright © 2019</small>
</div>
</footer>
</body>
</html>