-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome1.html
131 lines (92 loc) · 4.39 KB
/
home1.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" href="Assignment%20Images/logo.jpg">
<title>Home | Meru Quality Suppliers</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<link rel="stylesheet" href="css/project.css">
</head>
<body>
<!--My Navigation Bar-->
<nav class="navbar navbar-expand-lg bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="Assignment Images/logo.jpg"><img src="Assignment Images/logo.jpg" width="50"></a>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link " aria-current="page" href="home1.html"> <h3> Home </h3> </a>
</li>
<li class="nav-item">
<a class="nav-link" href="AboutUs.html"> <h3> About Us</h3></a>
</li>
<li class="nav-item">
<a class="nav-link " href="ContactUs.html"> <h3>Contact Us</h3></a>
</li>
</ul>
</div>
</div>
</nav>
<br><br>
<!--This is the carousel-->
<div class="container">
<div id="carouselExampleAutoplaying" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="Assignment%20Images/hass%20tree.jpg" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="Assignment%20Images/hass%20avocado.jpg" class="d-block w-100">
</div>
<div class="carousel-item">
<img src="Assignment%20Images/hass%20tree2.jpg" class="d-block w-100">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
<br><br><br><br>
<!--This is the content of my website-->
<h1 class="h1"> Welcome to Meru Quality Suppliers</h1>
<p class="p1">
Meru Quality Suppliers (MQS) is a family company registered in November 2016. As part of avocado growing, dairy cattle
and beekeeping operations are carried out making it necessary to plant fodder and bee trees too in the farm. The
three farming business units have symbiotic relationship with at least one other.
The combination of trees, agricultural crops and animals in the farm provides many environmental benefits including
enhancing biodiversity and soil health. Notably, the avocado is recommended by the World Agroforestry
Centre (ICRAF) as one of the most eligible commercial trees to include in agroforestry. The project therefore
promotes environmental conservation while creating employment, offering training and transferring technology mainly
to the local community.
</p>
<br><br><br><br>
<div class="row bg-secondary text-light">
<div class="col-md-6 text-center">
<h5> FOLLOW US ON:</h5>
<a href="https://www.facebook.com/"><img src="Assignment%20Images/facebook.jpg" width="50"></a>
<br><br>
<a href="https://www.twitter.com/"><img src="Assignment%20Images/twitter.jpg" width="50"></a>
<br><br>
<a href="https://www.instagram.com/"><img src="Assignment%20Images/instagram.jpg"width="50" ></a>
<br><br>
<a href="https://www.tiktok.com/"><img src="Assignment%20Images/tiktok.jpg"width="50" ></a>
<br><br>
</div>
<div class="col-md-6 text-center">
<h5>Contact us on:</h5>
<h5> <a href="+254 723456789" class="text-dark">0723456789</a> </h5>
</div>
<br><br><br><br><br><br><br><br><br><br>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-geWF76RCwLtnZ8qwWowPQNguL3RmwHVBC9FhGdlKrxdiJJigb/j/68SIy3Te4Bkz" crossorigin="anonymous"></script>
</body>
</html>