-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
224 lines (184 loc) · 6.66 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!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">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/bac16a29bd.js" crossorigin="anonymous"></script>
<title>The Pearl of Africa Tour</title>
</head>
<body class="about">
<section class="top-bar only-desktop">
<ul>
<li>
<a href="https://twitter.com/matovu100">
<i class="fa fa-twitter" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://github.com/matovu-farid">
<i class="fa fa-github" aria-hidden="true"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/matovu-farid-48b80257">
<i class="fa fa-linkedin" aria-hidden="true"></i>
</a>
</li>
</ul>
</section>
<section class="menu no-display">
<i class="fa fa-times close" aria-hidden="true"></i>
<ul>
<li>
<a href="./index.html">
<p class="list-item">
Home
</p>
</a>
</li>
<li>
<a href="#about-logo">
<p class="list-item">
About logo
</p>
</a>
</li>
<li>
<a href="#patners">
<p class="list-item">
Patners
</p>
</a>
</li>
</ul>
</section>
<nav class="only-desktop nav">
<div class="logo-nav">
<a href="./index.html">
<img class="header-logo" src="./assets/logos/PearlOAT.png" alt="Pearl of Africa Logo">
</a>
</div>
<ul>
<li>
<a href="./index.html">
<p class="list-item">
Home
</p>
</a>
</li>
<li>
<a href="#categories">
<p class="list-item">
Categories
</p>
</a>
</li>
<li>
<a href="#parks">
<p class="list-item">
Parks
</p>
</a>
</li>
</ul>
</nav>
<main>
<section class="hero">
<div class="background-images">
</div>
<div class="menu-button ">
<i class="fa fa-bars " aria-hidden="true"></i>
</div>
<header>
<h1><span class="only-mobile small-weight">"Welcome to the Pearl of Africa"</span>
<br/>
The Pearl of Africa Tour
</h1>
</header>
<div class="text">
<p class="about-description">
The Pearl of Africa Tour is an annual tourism event in the East African region organized by the Uganda Tourism Board (UTB).
The tour gives tourists the opportunity to marvel at all the indigenous wildlife and see rare species not seen anywhere in the world at no cost.
The tourists get to visit some of the best gameparks in world all within the tour.
</p>
</div>
<footer>
<p>For more information about the Pearl of Africa Tour, please visit the website
Uganda Tourism Board - Visituganda
</p>
<a href="https://utb.go.ug">Go to website</a>
</footer>
</section>
<section class="about-logo" id="about-logo">
<header>
<h2>
The Pearl of Africa Tour 2021 LOGO
</h2>
</header>
<hr class="underline">
<P>
The logo of the Pearl of Africa Tour was decided through the logo competition.
</P>
<img class="logo" src="./assets/logos/PearlOAT.png" alt="The Pearl of Africa Tour logo">
</section>
<section class="past-years">
<header>
<h2>
See the past Pearl of Africa tours
</h2>
</header>
<p>Take a look at the last two tours that took place</p>
<ul>
<li class="last year">
<div class="overlay">
<h3>2020</h3>
<p>The best Pearl of Africa tour</p>
</div>
</li>
<li class="first year">
<div class="overlay">
<h3>2019</h3>
<p>The very first Pearl of Africa tour</p>
</div>
</li>
</ul>
</section>
</main>
<footer>
<section class="patners" id="patners">
<h2>Patners</h2>
<hr class="underline">
<ul>
<li>
Ireland
</li>
<li>
Morrocco Tour
</li>
<li>
Kenya
</li>
<li>
Dubai Travel
</li>
<li>
Africana Hotel
</li>
</ul>
</section>
<section class="copyright only-mobile" id="copyright">
<img class="header-logo" src="./assets/logos/PearlOAT.png" alt="Pearl of Africa Logo">
<p>
© A Uganda Tourism Board Copyright.<br>
All Rights Reserved.
</p>
</section>
</footer>
<script src="./mobile_menu.js"></script>
</body>
</html>