-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
684 lines (609 loc) · 28.3 KB
/
index.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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Beta-connect</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicons
================================================== -->
<link rel="icon" href="img/favicon/favicon-32x32.png" type="image/x-icon" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="img/favicon/favicon-144x144.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/favicon/favicon-72x72.png">
<link rel="apple-touch-icon-precomposed" href="img/favicon/favicon-54x54.png">
<!-- CSS
================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Template styles-->
<link rel="stylesheet" href="css/style.css">
<!-- Responsive styles-->
<link rel="stylesheet" href="css/responsive.css">
<!-- FontAwesome -->
<link rel="stylesheet" href="css/font-awesome.min.css">
<!-- Animation -->
<link rel="stylesheet" href="css/animate.css">
<!-- Prettyphoto -->
<link rel="stylesheet" href="css/prettyPhoto.css">
<!-- Owl Carousel -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/flexslider.css">
<!-- Flexslider -->
<link rel="stylesheet" href="css/cd-hero.css">
<!-- Style Swicther -->
<link id="style-switch" href="css/preset3.css" media="screen" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="css/font-awesome.min.css" />
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements. All other JS at the end of file. -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>oncontextmenu="return false
<![endif]-->
</head>
<body>
<section class="toparea">
<div class="container">
<div class="row">
<!-- <div class="col-md-9 top-text pull-left animated fadeInLeft">
<i class="fa fa-phone"></i> Phone: (+234) 9056916401 <span class="separator1"></span><i class="fa fa-envelope"></i> Email: <a href="#">[email protected]</a>
</div> -->
<div class="col-md-12 text-right animated fadeInRight">
<div class="social-icons">
<a href="https://www.facebook.com/Betaconnect-Professional-Consulting-950687841713573/?skip_nax_wizard=true">
<img class="img-responsive" src="images/fb-f-logo__blue_29.png" alt="logo" height="80" width="80">
</a>
<a href="https://twitter.com/betaconnectng">
<img class="img-responsive" src="images/124021.svg" alt="logo" height="80" width="80">
</a>
<a href="https://www.linkedin.com/company/betaconnect-professional-consulting?report.success=KJ_KkFGTDCfMt-A7wV3Fn9Yvgwr02Kd6AZHGx4bQCDiP6-2rfP2oxyVoEQiPrcAQ7Bf">
<img class="img-responsive" src="images/li-logo.png" alt="logo" height="80" width="80">
</a>
<a href="https://www.instagram.com/betaconnectng/">
<img class="img-responsive" src="images/1466440836_social-instagram-new-square2.png" alt="logo" height="80" width="80">
</a>
</div>
</div>
</div>
</div>
</section>
<div class="body-inner">
<!-- Header start -->
<header id="header" class="navbar-fixed-top top header4 header3 wowmenu" role="banner">
<div class="container">
<div class="row">
<!-- Logo start -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-brand">
<a href="index.html">
<img class="img-responsive" src="images/LOGO.png" alt="logo" height="80" width="80">
</a>
</div> <span class="ideal"><a href="index.html">Beta<i class="idear2">conn</i>ect</a></span>
</div><!--/ Logo end -->
<nav class="collapse navbar-collapse clearfix" role="navigation">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown active">
<a href="index.html">Home </a>
</li>
<li class="dropdown">
<a href="about.html">About Us</a>
</li>
<li class="dropdown">
<a href="service.html">Service<i class="fa fa-angle-down"></i></a>
<div class="dropdown-menu">
<ul>
<li><a href="training.html">Training</a></li>
<li><a href="portfolio-static.html">Gallery</a></li>
</ul>
</div>
</li>
<li class="dropdown">
<a href="career.html">Career </a>
</li>
<li><a href="contact.html">Contact</a></li>
<li class="dropdown">
<a href="#0">Blog</a>
</li>
</ul>
</nav><!--/ Navigation end -->
</div><!--/ Row end -->
</div><!--/ Container end -->
</header><!--/ Header end -->
<!-- Slider start -->
<section id="home" class="no-padding">
<!-- Carousel -->
<div id="main-slide" class="carousel slide" data-ride="carousel">
<div class="overlay"></div>
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#main-slide" data-slide-to="0" class="active"></li>
<li data-target="#main-slide" data-slide-to="1"></li>
<li data-target="#main-slide" data-slide-to="2"></li>
</ol><!--/ Indicators end-->
<!-- Carousel inner -->
<div class="carousel-inner">
<div class="item active">
<img class="img-responsive" src="images/slider2/SLIDE1.jpg" alt="slider">
<div class="slider-content">
<div class="col-md-12 text-center">
<h2 class="animated2">
A Structured Training!
</h2>
<h3 class="animated3">
ensures employees have a consistent experience
</h3>
</div>
</div>
</div><!--/ Carousel item end -->
<div class="item">
<img class="img-responsive" src="images/slider2/team-work7-641.jpg" alt="slider">
<div class="slider-content">
<div class="col-md-12 text-center">
<h2 class="animated4">
Building Self-Esteem
</h2>
<h3 class="animated5">
training develops a greater sense of self-worth and dignity
</h3>
</div>
</div>
</div><!--/ Carousel item end -->
<div class="item">
<img class="img-responsive" src="images/slider2/bg2.jpg" alt="slider">
<div class="slider-content">
<div class="col-md-12 text-center">
<h2 class="animated7">
Professional Training
</h2>
<h3 class="animated8">
creates an overall knowledgeable staff who can work independently
</h3>
</div>
</div>
</div><!--/ Carousel item end -->
</div><!-- Carousel inner end-->
<!-- Controls -->
<a class="left carousel-control" href="#main-slide" data-slide="prev">
<span><i class="fa fa-angle-left"></i></span>
</a>
<a class="right carousel-control" href="#main-slide" data-slide="next">
<span><i class="fa fa-angle-right"></i></span>
</a>
</div><!-- /carousel -->
</section>
<!--/ Slider end --><!--
<section class="call-to-action dark">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3>Betaconnect provide best in class training and consulting services</h3>
<a href="service.html" class="pull-right btn btn-primary solid">Learn More</a>
</div>
</div>
</div>
</section> -->
<section id="about" class="section">
<div class="container">
<!-- Section Header -->
<div class="row" style="display: none">
<div class="col-md-6 col-md-offset-3">
<header class="text-center">
<h2 class="section-title">About <span class="text-theme">Us</span></h2>
<p class="section-subtitle">It is a long established fact that a reader</p>
</header>
</div>
</div>
<!-- /Section Header -->
<div class="row">
<!-- Feature Block -->
<a href="Event Management training.html"> <div style="visibility: visible; animation-duration: 1.3s; animation-name: fadeIn;" class="col-sm-4 feature fadeIn wow" data-wow-duration="1.3s">
<!-- <span class="fa fa-pencil-square-o icon"></span> -->
<img class="img-responsive pull-right" src="images/Event-planning-and-event-management-as-a-career.jpg" alt="">
<div class="h3 title">Event Management Training</div>
<p class="description">
Attend a 2 day intensive training in Event Planning and Management
<!-- <a href="#" class="btn btn-theme">Read more</a> -->
</div></a>
<!-- /Feature Block -->
<!-- Feature Block -->
<a href="Ms Project.html"><div style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.4s; animation-name: fadeIn;" class="col-sm-4 feature fadeIn wow" data-wow-duration="1.3s" data-wow-delay="0.4s">
<!-- <span class="fa fa-magic icon"></span> -->
<img class="img-responsive pull-right okey" src="images/565120_07d5_2.jpg" alt="">
<div class="h3 title">MS Project Training </div>
<p class="description">
Ms Project is a tool used in planning and scheduling projects. We introduce our Ms Project course delivered
</p>
<!-- <a href="#" class="btn btn-theme">Read more</a> -->
</div></a>
<!-- /Feature Block -->
<!-- Feature Block -->
<a href="PRIMAVERA P6.html"><div style="visibility: visible; animation-duration: 1.3s; animation-delay: 0.8s; animation-name: fadeIn;" class="col-sm-4 feature fadeIn wow" data-wow-duration="1.3s" data-wow-delay="0.8s">
<!-- <span class="fa fa-spinner icon"></span> -->
<img class="img-responsive pull-right" src="images/PAGE-Computer Training:Job Readiness.jpg" alt="">
<div class="h3 title">Primavera 6 Professional Rel. 8 Training</div>
<p class="description">
With the knowledge of Primavera Project Planners and Executives will be able to view their organisation’s
</p>
<!-- <a href="#" class="btn btn-theme">Read more</a> -->
</div></a>
<!-- /Feature Block -->
</div>
</div>
</section>
<!-- Parallax 2 start -->
<!-- <section class="parallax parallax1">
<div class="parallax-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h2>Let’s help get you customers through social media marketing</h2>
<h3>Join the social-media-marketing revolution: to promote your brands, increase sales, engage customers, and drive site traffic using Facebook, Twitter, LinkedIn, etc.
</h3>
</div>
</div>
</div>
</section> -->
<!-- Container end -->
<!-- Parallax 2 end -->
<!-- About tab start -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-md-12 heading text-center">
<span class=" wow bounceIn"></span>
<h2 class="title2">Know About Our Training
<span class="title-desc"></span>
</h2>
</div>
</div> <!-- Title row end -->
<div class="row">
<div class="col-md-4 col-sm-5 mw">
<div class="tab-pane active animated fadeInRight" id="tab_a">
<!-- <img class="img-responsive pull-left" src="images/Xchanging-IT_4359_image.jpg" alt=""> -->
<h3 class="bolder h3 title">Our Upcoming Training are</h3>
<div class="microsoft">
<div id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed">
<div id="vmarquee" style="position: absolute; width: 98%;">
<ul class="check-list marquee">
<li><i class="fa fa-square"></i><a href="#0"> Project Management</a></li>
<li><i class="fa fa-square"></i><a href="pmp.html"> Professional (PMP Exam Prep) Lagos, Abuja.</a></li>
<li><i class="fa fa-square"></i><a href="Event Management training.html"> Event management Training Lagos</a></li>
<li><i class="fa fa-square"></i><a href="#0"> Presentation Skill Lagos</a></li>
<li><i class="fa fa-square"></i><a href="Event Management training.html"> Event Management Training , Uyo</a></li>
<li><i class="fa fa-square"></i><a href="#0"> Create and Making Money Blogging, Lagos</a></li>
<li><i class="fa fa-square"></i><a href="#0"> English Diction Class, Lagos and Abuja</a></li>
<li><i class="fa fa-square"></i><a href="PRIMAVERA P6.html"> Project Management in Primavera P6 Professional, Lagos.</a></li>
</ul>
</div>
</div></div>
</div>
</div>
<div style="visibility: visible; animation-duration: 1.3s; animation-name: fadeIn;" class="col-sm-4 feature fadeIn wow mw" data-wow-duration="1.3s">
<!-- <span class="fa fa-pencil-square-o icon"></span> -->
<div class="h3 title">Our Faculty Courses</div>
<img class="img-responsive pull-right" src="images/MS_PowerPoint_training_courses.jpg" alt="">
<div class="h3 title"></div>
<p class="description mustbe"><a href="#0">Click here to see details of our courses and outline….</a></p>
<!-- <a href="#" class="btn btn-theme">Read more</a> -->
</div>
<div class="col-md-4 col-sm-5 mw">
<!-- <img class="img-responsive pull-right" src="images/Xchanging-IT_4359_image.jpg" alt=""> -->
<h3 class="bolder h3 title">On-Going Training Every Week</h3>
<ul class="check-list">
<li><i class="fa fa-square"></i><a href="#0"> Ms Excel , Lagos</a></li>
<li><i class="fa fa-square"></i><a href="#0"> Ms Powerpont, Lagos</a></li>
<li><i class="fa fa-square"></i><a href="#0"> Managing Project with Ms Project, Lagos</a></li>
</ul>
<img class="img-responsive pull-right" src="images/Microsoft-Office.png" alt="">
</div>
</div><!-- tab content -->
</div><!-- Featured tab end -->
</div><!-- Content row end -->
</div><!-- Container end -->
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6">
</div>
<div class="col-md-4 col-sm-6 mw1">
<div class="tab-pane active animated fadeInRight" id="tab_a">
<!-- <img class="img-responsive pull-left" src="images/Xchanging-IT_4359_image.jpg" alt=""> -->
<h3 class="h3 title">Why Train Your Workforce</h3>
<div class="microsoft">
<ul class="check-list marquee">.
<li><i class="fa fa-chevron-right"></i> To build a more efficient, effective and highly motivated team</li>
<li><i class="fa fa-chevron-right"></i> To create a pool of readily available replacement for personnel who may leave or move up in the organisation.</li>
<li><i class="fa fa-chevron-right"></i>To decrease need for personnel supervision.</li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 mw1">
<div class="tab-pane active animated fadeInRight" id="tab_a">
<img class="img-responsive pull-right" src="images/microsoft-office-2013-training-materials-Image14.jpg" alt="">
<!-- <img class="img-responsive pull-left" src="images/Xchanging-IT_4359_image.jpg" alt=""> -->
<h3 class="bolder h3 title">Betaconnect Professional Training Calendar 2016</h3>
<div class="microsoft">
<ul class="check-list marquee">
<li><i class=""></i><a class="btn btn-primary solid" href="#0">Download and Enrol now…</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section><!-- About end -->
<!-- <section class="parallax parallax1">
<div class="parallax-overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<h2>Let’s help get you customers through social media marketing</h2>
<h3>Join the social-media-marketing revolution: to promote your brands, increase sales, engage customers, and drive site traffic using Facebook, Twitter, LinkedIn, etc.
</h3>
</div>
</div>
</div>
</section> -->
<!-- <section class="call-to-action dark">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3>Betaconnect Professional Training Calendar 2016</h3>
<a href="service.html" class="pull-right btn btn-primary solid">Download and Enrol now</a>
</div>
</div>
</div>
</section> -->
<div class="gap-20"></div>
<div class="gap-20"></div>
<div class="gap-20"></div>
<div class="gap-20"></div>
<!-- <section id="featured-video" class="featured-video">
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="images/pages/abelcommunications1.gif" alt="" width="450" height="300">
</div>
<div class="col-md-6">
<div class="video-block-head">
<h3>Training Faculties</h3>
<p>We specialize in corporate events planning and management……….We manage and satisfy your guest during the event
</p>
</div>
<div class="video-block-content">
<span class="feature-icon pull-left" ><i class="fa fa-cogs"></i></span>
<div class="feature-content">
<h3>Manegement Programmes</h3>
</div>
</div>
<div class="video-block-content">
<span class="feature-icon pull-left" ><i class="fa fa-cogs"></i></span>
<div class="feature-content">
<h3>Digital Media Programmes</h3>
</div>
</div>
<div class="video-block-content">
<span class="feature-icon pull-left" ><i class="fa fa-cogs"></i></span>
<div class="feature-content">
<h3>Personality Developement Programmes</h3>
</div>
</div>
<div class="video-block-content">
<span class="feature-icon pull-left" ><i class="fa fa-cogs"></i></span>
<div class="feature-content">
<h3>Computer base Programmes</h3>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!-- Newsletter start -->
<!-- <section id="newsletter" class="newsletter">
<div class="container">
<div class="row">
<div class="col-md-12 heading text-center">
<span class="icon-pentagon wow bounceIn animated"><i class="fa fa-envelope"></i></span>
<h2 class="title2">Subscribe With Us
<span class="title-desc">We Love to Work with Passion</span>
</h2>
</div>
</div>
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="#" method="post" id="newsletter-form" class="newsletter-form wow bounceIn" data-wow-duration=".8s">
<div class="form-group">
<input type="email" name="email" id="newsletter-form-email" class="form-control form-control-lg" placeholder="Enter your email address" autocomplete="off">
<button class="btn btn-primary solid">Subscribe</button>
</div>
</form>
</div>
</div>
</div>
</section>
-->
<footer>
<div class="container">
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-2">
<img src="images/LOGO.png" alt="logo" height="40" width="40">
</div>
<div class="col-sm-6 col-md-3">
<h3>Address</h3>
<ul class="list-unstyled testimonials">
<li class="fsize13">
Betaconnect Professional Consulting,<br />
No 23 Badore Road,
Ajah,
Lekki Peninsula
Lagos, Nigeria.<br />
Tel: +234 (0)818 298 2556, +234(0)8037573512.
<cite><a href="mailto:[email protected]?subject=feedback" "email"> Email: [email protected]</a></cite>
</li>
</ul>
</div>
<div class="col-xs-6 col-sm-6 col-md-2">
<h3>Explore</h3>
<ul class="list-unstyled">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="service.html">Service</a></li>
<li><a href="training.html">Training</a></li>
<li><a href="portfolio-static.html">Gallery</a></li>
<li><a href="careert.html">Career</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="#0">Blog</a></li>
</div>
<div class="col-xs-6 col-sm-6 col-md-3">
<h3>Training Faculties</h3>
<ul class="list-unstyled">
<li><a href="Event Management training.html">Management Programme</a></li>
<li><a href="#0">Computer Based Programme</a></li>
<li><a href="#0">Digital Media Programme</a></li>
<li><a href="#0">Personality Development Programme</a></li>
</div>
<div class="col-sm-6 col-md-2 hidden-xs">
<h3>Connect With Us</h3>
<ul class="list-unstyled">
<li><a href="https://www.facebook.com/Betaconnect-Professional-Consulting-950687841713573/?skip_nax_wizard=true">Facebook</a></li>
<li><a href="https://twitter.com/betaconnectng">Twitter</a></li>
<li><a href="https://www.instagram.com/betaconnectng/">Instagram</a></li>
<li><a href="https://www.linkedin.com/company/betaconnect-professional-consulting?report.success=KJ_KkFGTDCfMt-A7wV3Fn9Yvgwr02Kd6AZHGx4bQCDiP6-2rfP2oxyVoEQiPrcAQ7Bf">LinkedIn</a></li>
</ul>
</div>
</div>
</div>
<div class="bottombar">
<div class="container">
<a href="#0">© Copyright 2015 BetaConnect.</a>
</div>
</div>
</footer>
<!-- Footer start -->
<!-- <section id="footer" class="footer footer-map">
<div class="container">
<div class="row">
<div class="col-md-12 text-center">
<div class="footer-logo">
<img src="images/LOGO.png" alt="logo" height="30" width="30">
</div>
<div class="gap-20"></div>
<ul class="social-icon dark unstyled">
<li>
<a title="Twitter" href="https://twitter.com/betaconnectng ">
<span class="icon-pentagon wow bounceIn"><i class="fa fa-twitter"></i></span>
</a>
<a title="Facebook" href="https://www.facebook.com/Betaconnect-Professional-Consulting-950687841713573/?skip_nax_wizard=true">
<span class="icon-pentagon wow bounceIn"><i class="fa fa-facebook"></i></span>
</a>
<a title="Google+" href="https://www.instagram.com/betaconnectng/">
<span class="icon-pentagon wow bounceIn"><i class="fa fa-instagram"></i></span>
</a>
<a title="linkedin" href="https://www.linkedin.com/company/betaconnect-professional-consulting?report.success=KJ_KkFGTDCfMt-A7wV3Fn9Yvgwr02Kd6AZHGx4bQCDiP6-2rfP2oxyVoEQiPrcAQ7Bf">
<span class="icon-pentagon wow bounceIn"><i class="fa fa-linkedin"></i></span>
</a>
</li>
</ul>
</div>
</div>
<div class="row">
<div class="col-md-12 text-center">
<div class="copyright-info">
© Copyright 2015 BetaConnect.
</div>
</div>
</div>
<div id="back-to-top" data-spy="affix" data-offset-top="10" class="back-to-top affix">
<button class="btn btn-primary" title="Back to Top"><i class="fa fa-angle-double-up"></i></button>
</div>
</div>
</section> -->
<!-- Javascript Files
================================================== -->
<script type="text/javascript">
/***********************************************
* Cross browser Marquee II- � Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
var delayb4scroll=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeed=2 //Specify marquee scroll speed (larger is faster 1-10)
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?
////NO NEED TO EDIT BELOW THIS LINE////////////
var copyspeed=marqueespeed
var pausespeed=(pauseit==0)? copyspeed: 0
var actualheight=''
function scrollmarquee(){
if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8)) //if scroller hasn't reached the end of its height
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px" //move scroller upwards
else //else, reset to original position
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"
}
function initializemarquee(){
cross_marquee=document.getElementById("vmarquee")
cross_marquee.style.top=0
marqueeheight=document.getElementById("marqueecontainer").offsetHeight
actualheight=cross_marquee.offsetHeight //height of marquee content (much of which is hidden from view)
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marquee.style.height=marqueeheight+"px"
cross_marquee.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)
}
if (window.addEventListener)
window.addEventListener("load", initializemarquee, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarquee)
else if (document.getElementById)
window.onload=initializemarquee
</script>
<!-- initialize jQuery Library -->
<script type="text/javascript" src="js/jquery.js"></script>
<!-- Bootstrap jQuery -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- Style Switcher -->
<script type="text/javascript" src="js/style-switcher.js"></script>
<!-- Owl Carousel -->
<script type="text/javascript" src="js/owl.carousel.js"></script>
<!-- PrettyPhoto -->
<script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
<!-- Bxslider -->
<script type="text/javascript" src="js/jquery.flexslider.js"></script>
<!-- Owl Carousel -->
<script type="text/javascript" src="js/cd-hero.js"></script>
<!-- Isotope -->
<script type="text/javascript" src="js/isotope.js"></script>
<script type="text/javascript" src="js/ini.isotope.js"></script>
<!-- Wow Animation -->
<script type="text/javascript" src="js/wow.min.js"></script>
<!-- SmoothScroll -->
<script type="text/javascript" src="js/smoothscroll.js"></script>
<!-- Eeasing -->
<script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
<!-- Counter -->
<script type="text/javascript" src="js/jquery.counterup.min.js"></script>
<!-- Waypoints -->
<script type="text/javascript" src="js/waypoints.min.js"></script>
<!-- Google Map API Key Source -->
<script src="http://maps.google.com/maps/api/js?sensor=false"></script>
<!-- For Google Map -->
<script type="text/javascript" src="js/gmap3.js"></script>
<!-- Doc http://www.mkyong.com/google-maps/google-maps-api-hello-world-example/ -->
<!-- Template custom -->
<script type="text/javascript" src="js/custom.js"></script>
</div><!-- Body inner end -->
</body>
</html>