-
Notifications
You must be signed in to change notification settings - Fork 1
/
about.html
484 lines (463 loc) · 19 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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
<!doctype html>
<html lang="zxx">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SPBNHM1W04"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-SPBNHM1W04');
</script>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>FRIH a Real Estate Hub</title>
<!-- google fonts -->
<link href="//fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
<link href="//fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap" rel="stylesheet">
<!-- google fonts -->
<!-- Template CSS -->
<link rel="stylesheet" href="assets/css/style-starter.css">
<!-- Template CSS -->
</head>
<body>
<!--header-->
<header id="site-header" class="fixed-top">
<div class="container">
<nav class="navbar navbar-expand-lg stroke">
<h1><a class="navbar-brand mr-lg-5" href="index.html">
FR<span>I</span>H
</a></h1>
<!-- if logo is image enable this
<a class="navbar-brand" href="#index.html">
<img src="image-path" alt="Your logo" title="Your logo" style="height:35px;" />
</a> -->
<button class="navbar-toggler collapsed bg-gradient" type="button" data-toggle="collapse"
data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon fa icon-expand fa-bars"></span>
<span class="navbar-toggler-icon fa icon-close fa-times"></span>
</span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<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">
<a class="nav-link" href="contact.html">Contact</a>
</li>
<div class="search-right">
<a href="#search" title="search"><span class="fa fa-search" aria-hidden="true"></span></a>
<!-- search popup -->
<div id="search" class="pop-overlay">
<div class="popup">
<form action="#" method="GET" class="search-box">
<input type="search" placeholder="Enter Keyword" name="search" required="required" autofocus="">
<button type="submit" class="btn">Search Now</button>
</form>
</div>
<a class="close" href="#close">×</a>
</div>
<!-- /search popup -->
</div>
</ul>
</div>
<!-- toggle switch for light and dark theme -->
<div class="mobile-position">
<nav class="navigation">
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox">
<div class="mode-container">
<i class="gg-sun"></i>
<i class="gg-moon"></i>
</div>
</label>
</div>
</nav>
</div>
<!-- //toggle switch for light and dark theme -->
</nav>
</div>
</header>
<!-- //header -->
<!-- about breadcrumb -->
<section class="w3l-about-breadcrumb text-center">
<div class="breadcrumb-bg breadcrumb-bg-about py-sm-5 py-4">
<div class="container py-2">
<h2 class="title">About Us</h2>
<ul class="breadcrumbs-custom-path mt-2">
<li><a href="#url">Home</a></li>
<li class="active"><span class="fa fa-arrow-right mx-2" aria-hidden="true"></span> About </li>
</ul>
</div>
</div>
</section>
<!-- //about breadcrumb -->
<!-- /about-6-->
<section class="w3l-cta4 py-5">
<div class="container py-lg-5">
<div class="ab-section text-center">
<h6 class="sub-title">About Us</h6>
<h3 class="hny-title">Fortune Real Estate Investment Hub (FRIH) </h3>
<p>Welcome to Fortune Real Estate Investment Hub (FRIH), a subsidiary of Mac Fortune Investemnt and Logistics Limited. This is a place where you make investment and earn profit for life from your investment. Welcome on board. <br>
Our investment packages:
Invest N2.5 million in our urban home and earn N500,000 annually for life. Yes! You earn for life.
We also offer you opportunity to sell for capital appreciation. Are you thinking N2.5m is a huge sum for you to pay?
Don't worry, we have got you covered with our invest little and earn more package. All you need do is invest N30,000 and earn 50% profit on investment within 6-9 months.
Surprise! Yes, you earn 50% of your investment. Isn't that awesome? One more thing, you also earn a % if you refer a person for the investment scheme. What are you waiting for? Pick your form today to start earning profit for life. Don't miss this golden opportunity.
</p>
<div class="row mt-5 text-center">
<div class="col-md-6 mt-md-0 mt-4">
<img src="assets/images/ab1.jpeg" class="img-fluid" alt="frih real estate">
</div>
<div class="col-md-6 mt-md-0 mt-4">
<img src="assets/images/ab1.jpeg" class="img-fluid" alt="frih real estate">
</div>
</div>
</div>
</div>
</section>
<!-- //about-6-->
<!-- /content-6-->
<section class="w3l-content-6 py-5" id="why">
<div class="container py-lg-5">
<div class="row">
<div class="col-lg-4 content-6-left">
<h6 class="sub-title">Why Choose Us</h6>
<h3 class="hny-title">FRIH, a real estate investment you can trust.</h3>
</div>
<div class="col-lg-4 content-6-right mt-lg-0 mt-4">
<p class="mb-3">@ FRIH- we are trustworthy, Reliable and dependable. Join us as we take you to the profit land. The only investment that gives you guarantee of return is real estate, join the trail now and start earning.</p>
<p class="mb-3">FRIH has a lot of packages for you. We believe everybody has what it takes to benefit from real estate investment. Join us today and be happy tomorrow.</p>
</div>
<div class="col-lg-4 content-6-right mt-lg-0 mt-4">
<p class="mb-3">Fortune Real Estate Investment Hub (FRIH) is a subsidiary of Mac Fortune Investemnt and Logistics Limited. This is a place where you make investment and earn profit for life from your investment.</p>
<p class="mb-3">FRIH has a lot of packages for you. We believe everybody has what it takes to benefit from real estate investment. Join us today and be happy tomorrow.</p>
</div>
</div>
</div>
</section>
<!-- //content-6-->
<!-- stats -->
<!-- <section class="w3l-statshny py-5" id="stats">
<div class="container py-lg-5 py-md-4">
<div class="w3-stats-inner-info">
<div class="row">
<div class="col-lg-4 col-6 stats_info counter_grid text-left">
<span class="fa fa-smile-o"></span>
<p class="counter">1730</p>
<h4>Happy Customers</h4>
</div>
<div class="col-lg-4 col-6 stats_info counter_grid1 text-left">
<span class="fa fa-users"></span>
<p class="counter">730</p>
<h4>Projects</h4>
</div>
<div class="col-lg-4 col-6 stats_info counter_grid mt-lg-0 mt-5 text-left">
<span class="fa fa-database"></span>
<p class="counter">30</p>
<h4>branches</h4>
</div>
</div>
</div>
</div>
</section>
<! //stats -->
<!-- team -->
<!-- <section class="w3l-team" id="team">
<div class="team-block py-5">
<div class="container py-lg-5">
<div class="title-content text-center mb-lg-3 mb-4">
<h6 class="sub-title">Our Team</h6>
<h3 class="hny-title">Meet Our Agents</h3>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team1.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Alexander</a></h3>
<span class="post">Agent</span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team2.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Victoria</a></h3>
<span class="post">Agent</span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team3.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Smith roy</a></h3>
<span class="post">Agent</a></span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team4.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Johnson</a></h3>
<span class="post">Agent</a></span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team5.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Johnson</a></h3>
<span class="post">Agent</a></span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 mt-lg-5 mt-4">
<div class="box16">
<a href="#url"><img src="assets/images/team6.jpg" alt="" class="img-fluid" /></a>
<div class="box-content">
<h3 class="title"><a href="#url">Johnson</a></h3>
<span class="post">Agent</a></span>
<ul class="social">
<li>
<a href="#" class="facebook">
<span class="fa fa-facebook-f"></span>
</a>
</li>
<li>
<a href="#" class="twitter">
<span class="fa fa-twitter"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- //team -->
<!--/w3l-footer-29-main-->
<footer>
<!-- footer -->
<section class="w3l-footer">
<div class="w3l-footer-16-main py-5">
<div class="container">
<div class="row">
<div class="col-lg-6 column">
<div class="row">
<div class="col-md-4 column">
<h3>Company</h3>
<ul class="footer-gd-16">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="contact.html">Invest with us</a></li>
</ul>
</div>
<div class="col-md-4 column mt-md-0 mt-4">
<h3>Useful Links</h3>
<ul class="footer-gd-16">
<li><a href="#url">Offers</a></li>
<li><a href="#url">Our Branches</a></li>
<li><a href="#url">Latest Media</a></li>
<li><a href="about.html">About Company</a></li>
<li><a href="#url">Our Packages</a></li>
</ul>
</div>
<div class="col-md-4 column mt-md-0 mt-4">
<h3>Our Services</h3>
<ul class="footer-gd-16">
<li><a href="#url">Privacy Policy</a></li>
<li><a href="#url">Our Terms</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="#">Landing Page</a></li>
<li><a href="#url">Our Agents</a></li>
</ul>
</div>
</div>
</div>
<div class="col-lg-6 col-md-12 column pl-lg-5 column4 mt-lg-0 mt-5">
<h3>Newsletter </h3>
<div class="end-column">
<h4>Get latest updates and offers.</h4>
<form action="#" class="subscribe" method="post">
<input type="email" name="email" placeholder="Email Address" required="">
<button type="submit">Go</button>
</form>
<p>Sign up for our latest news & articles. We won’t give you spam mails.</p>
</div>
</div>
</div>
<div class="d-flex below-section justify-content-between align-items-center pt-4 mt-5">
<div class="columns text-lg-left text-center">
<p>© 2020 Frih. All rights reserved.Design by <a href="https://github.com/abideen305/" target="_blank">
Abideen Muhammed</a>
</p>
</div>
<div class="columns-2 mt-lg-0 mt-3">
<ul class="social">
<li><a href="#facebook"><span class="fa fa-facebook" aria-hidden="true"></span></a>
</li>
<li><a href="#linkedin"><span class="fa fa-linkedin" aria-hidden="true"></span></a>
</li>
<li><a href="#twitter"><span class="fa fa-twitter" aria-hidden="true"></span></a>
</li>
<li><a href="#google"><span class="fa fa-google-plus" aria-hidden="true"></span></a>
</li>
<li><a href="#github"><span class="fa fa-github" aria-hidden="true"></span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- move top -->
<button onclick="topFunction()" id="movetop" title="Go to top">
<span class="fa fa-angle-up"></span>
</button>
<script>
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function () {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
document.getElementById("movetop").style.display = "block";
} else {
document.getElementById("movetop").style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
</script>
<!-- //move top -->
<script>
$(function () {
$('.navbar-toggler').click(function () {
$('body').toggleClass('noscroll');
})
});
</script>
</section>
<!-- //footer -->
</footer>
<!--//w3l-footer-29-main-->
<!-- Template JavaScript -->
<script src="assets/js/jquery-3.3.1.min.js"></script>
<script src="assets/js/theme-change.js"></script>
<!-- stats number counter-->
<script src="assets/js/jquery.waypoints.min.js"></script>
<script src="assets/js/jquery.countup.js"></script>
<script>
$('.counter').countUp();
</script>
<!-- //stats number counter -->
<!--/MENU-JS-->
<script>
$(window).on("scroll", function () {
var scroll = $(window).scrollTop();
if (scroll >= 80) {
$("#site-header").addClass("nav-fixed");
} else {
$("#site-header").removeClass("nav-fixed");
}
});
//Main navigation Active Class Add Remove
$(".navbar-toggler").on("click", function () {
$("header").toggleClass("active");
});
$(document).on("ready", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
$(window).on("resize", function () {
if ($(window).width() > 991) {
$("header").removeClass("active");
}
});
});
</script>
<!--//MENU-JS-->
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>