-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
149 lines (148 loc) · 5.16 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>infosafaris</title>
<!-- bootsrap link -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- css -->
<link rel="stylesheet" href="css/about.css">
<!-- font-awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</head>
<body>
<nav>
<div class="topnav">
<ul>
<li><a class="active" href="./index.html">HOME</a></li>
<li><a href="./about.html">ABOUT US</a></li>
<li><a href="./destinations.html">DESTINATION</a></li>
<li><a href="./contact_us.html">CONTACT</a></li>
</ul>
</div>
<div class="top-about">
<br><br><br><br><br><br><br><br>
<h3>ABOUT INFOSAFARIS</h3>
<p>Our Mission is to help you find parks faster and easier</p>
<button>Visit park</button>
<div class="logo">
<h2>INFOSAFARIS</h2>
<hr>
</div>
</div>
</nav>
<section class="who-we-are">
<h3>WHO WE ARE</h3>
<div class="who-we-are-flex">
<div class="who-we-are-text">
<p>InfoSafaris is part of the travels and<br>
Entertainment Industry with an aim to give<br>
all the information of parks in Kenya so that<br>
it is hustle free for you
</p>
<br>
<p>InfoSafaris realised that we spend a lot of<br>
time looking for parks scattered in different<br>
places and decided to give all the information <br>
of parks at just a simple click.With these we <br>
Ensure that you spend lots of time enjoying the <br>
trip and not worry about where to go or spend lots<br>
of time researching on the different parks.
</p>
<br>
<p>We give a summary of all the parks and how to <br>
access them
</p>
</div>
<div class="who-we-are-image">
<img src="Images/zebra and wildbeest.jpg" alt="zebras">
</div>
</div>
</section>
<section class="values">
<div class="values-images">
<img src="Images/big five 2.jpg" alt="big-5" id="bigfive">
<img src="Images/cheetah.jpg" alt="cheetah" id="cheetah">
</div>
<div class="mission">
<h3>Our Mission</h3>
<p>We make sure we spend as little <br>
time as possible researching <br>
but instead make most of your time enjoying the trip
</p>
<br>
<h3>Our Vision</h3>
<p>providing truthful and accurate<br>
information at all times while<br>
ensuring our clients benefit and get the most out of this site
</p>
<br>
<h3>Our Goal</h3>
<p>Make your travel easier<br>
and faster
</p>
</div>
</section>
<section class="team">
<hr>
<h3>MEET OUR TEAM</h3>
<div class="card-deck">
<div class="card">
<div class="card-body">
<img src="Images/RICHARD-removebg-preview.png" alt="Richard-CEO">
</div>
<div class="card-body">
<h4 class="card-title">Richard Omondi</h4>
<p class="card-text">Chief Executive Officer</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="Images/tracy.jpeg" alt="Tracy-director">
</div>
<div class="card-body">
<h4 class="card-title">Tracy Mbone</h4>
<p class="card-text">Director</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="Images/RICHARD-removebg-preview.png" alt="Amon-Operations Manager">
</div>
<div class="card-body">
<h4 class="card-title">Amon Wanyonyi</h4>
<p class="card-text">Operations Manager</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
<div class="card">
<div class="card-body">
<img src="Images/grace.png" alt="Grace-Ass. Operations Manager" id="grace">
</div>
<div class="card-body">
<h4 class="card-title">Grace Mwende</h4>
<p class="card-text">Ass. Operations Manager</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
</section>
<footer>
<div class="paragraph">
<p>Copyright 2021 InfoSafaris, All Right Reserved</p>
</div>
<div class="icons">
<i class="fa fa-facebook-square" aria-hidden="true" style="font-size:48px"></i>
<i class="fa fa-twitter-square" aria-hidden="true" style="font-size:48px"></i>
<i class="fa fa-instagram" aria-hidden="true" style="font-size:48px"></i>
</div>
</footer>
</body>
</html>