-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
93 lines (91 loc) · 4.51 KB
/
services.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
<!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="services">Services</h2>
<p class="tab">
The Farm House buys from different farmers all round the year and stores
the farm produce in the best possible methods of natural storage. These
farm produce can be purchased online and have them delivered to
individuals or whole sale marketers round the year.
</p>
<p class="tab">
Farm owners will have to register in the
<a href="sign-up.html">Sign-Up</a> page and specify the particular farm produce they want to sell to the farm house.<br /> Our vans for transportation of these farm produce are have mechanisms to maintain a favourable temperature
for the farm produce so they don't spoil before delivery to the customers.
</p>
<p>
Sensitization programs and workshops are also held by The Farm House for farmers in rural areas to teach them better ways of farming.
</p>
<p>
We go to various farms with harvesting equipments to buy from the farmers all year round.
</p>
<p>
Farmers can also apply for Fertilizers, Herbicides and Pesticides and get them at subsidized amounts.
</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>