-
Notifications
You must be signed in to change notification settings - Fork 1
/
home02.html
1107 lines (920 loc) · 56.6 KB
/
home02.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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>OpexNetwork - Home</title>
<meta name="description" content="OpexNetwork, The First independant TowerCo & Neutral infrastructure provider in Central Africa">
<meta name="author" content="pixel-industry">
<meta name="keywords" content="Towerco, Tower Company, Telecom Passive Infrastructure, Cameroon, Central Africa, gabon, tchad, central african republic, congo, Sharing, Collocation, Buy & Lease-Back, dark fiber, datacenter, Edge, 4G, Maintenance , Outsourcing, telecom, Monitoring, Wifi, Mvne, Mvno, mobile, Ran sharing, hotspot, SDN, FTTX, Fiber, OTT, Cloud, SIP-I, SMS, Solar, Small cell, PoP, Sale & Lease-Back, managed service">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, width=device-width">
<!-- stylesheets -->
<link rel="stylesheet" href="css/grid.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/darkblue.css" />
<link rel="stylesheet" href="css/responsive.css" />
<link rel="stylesheet" href="css/animate.css" />
<link rel="stylesheet" href="css/retina.css" />
<!-- Revolution slider -->
<link rel="stylesheet" href="rs-plugin/css/settings.css"/>
<link rel="stylesheet" href="rs-plugin/css/theme-settings.css"/>
<!-- prettyPhoto lightbox stylesheer -->
<link rel="stylesheet" href="css/prettyPhoto.css" media="screen" />
<!-- google web fonts -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,latin-ext,cyrillic-ext' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800,900,200,100' rel='stylesheet' type='text/css'>
<!-- Icons -->
<link rel="stylesheet" href="pixons/style.css" />
<link rel="stylesheet" href="iconsfont/iconsfont.css" />
<link rel="stylesheet" href="style-switcher/styleSwitcher.html"/>
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<![endif]-->
<!--[if lt IE 9]>
<script src="js/selectivizr-min.js"></script>
<![endif]-->
</head>
<body class="homepage">
</section>
</section>
<a href="#" id="styles-button"><div id="switcher-logo"></div></a>
</section><!-- style switcher end -->
<!-- .header-wrapper start -->
<div id="header-wrapper" class="clearfix">
<!-- .top-bar start -->
<section id="top-bar-wrapper">
<div id="top-bar" class="clearfix">
<ul class="contact-info">
<li>
<li>
<i class="icon-envelope-alt"></i>
<span><a href="mailto: [email protected]">[email protected]</a></span>
</li>
</ul><!-- .contact-info end -->
<!--- .social-links start -->
<ul class="social-links">
<li>
<a href='https://www.linkedin.com/company-beta/11035416/' class="pixons-linkedin"></a>
</li>
<li>
<a href="https://twitter.com/OpexNetwork1" class="pixons-twitter-1"></a>
</li>
<li>
<a href="#" class="pixons-facebook-2"></a>
</li>
</li>
</ul><!-- .social-links end -->
</div><!-- .top-bar end -->
</section><!-- .top-bar-wrapper end -->
<!-- #header start -->
<header id="header" class="clearfix">
<section id="logo">
<a href="home02.html">
<img src="img/logo.png" title="OpexNetwork, First TowerCo in Central Africa" alt="OpexNetwork, First TowerCo in Central Africa"/>
</a>
</section>
<section id="nav-container">
<nav id="nav">
<ul>
<li class="current-menu-item">
<a href="home02.html">Home</a>
<li>
<a href="about.html">About Us</a>
</li>
<li>
<a href="services02.html">Services </a>
</li>
<li>
<a href="portfolio2.html">Achievements</a>
</li>
<li>
<a href="hiring.html">Career </a>
</li>
<li>
</li>
<li class="no-sub">
<a href="contact.html">Contact</a>
</li>
</ul>
</nav><!-- #nav end -->
</section><!-- #nav-container end -->
<!-- #dl-menu.dl-menuwrapper start -->
<div id="dl-menu" class='dl-menuwrapper'>
<button class="dl-trigger">Open Menu</button>
<ul class="dl-menu">
<li>
<a href="home02.html">Home</a>
<ul class="dl-submenu">
<li><a href="home02.html">Home default</a></li>
<li><a href="home02.html">Home business 02</a></li>
</ul>
</li>
<li>
</li>
<li>
<a href="about.html">Pages</a>
<ul class="dl-submenu">
<li><a href="about.html">About us</a></li>
<li><a href="about02.html">About us style 02</a></li>
<li><a href="aboutme.html">About me</a></li>
<li><a href="pagetitle02.html">About me page title 02</a></li>
<li><a href="pagetitle03.html">About me page title 03</a></li>
<li><a href="team.html">Team members</a></li>
<li><a href="hiring.html">We are hiring</a></li>
<li><a href="services.html">Our Services</a></li>
<li><a href="services02.html">Services style 02</a></li>
<li><a href="pricing.html">Pricing tables</a></li>
<li><a href="sidebarleft.html">Page sidebar left</a></li>
<li><a href="sidebarright.html">Page sidebar right</a></li>
</ul>
</li>
<li>
<a href="portfolio3.html">Portfolio</a>
<ul class="dl-submenu">
<li><a href="portfolio2.html">Portfolio 2 columns</a></li>
<li><a href="portfolio3.html">Portfolio 3 columns</a></li>
<li><a href="portfolio4.html">Portfolio 4 columns</a></li>
<li><a href="portfoliofull.html">Portfolio full layout</a></li>
<li><a href="portfoliosingle.html">Portfolio single</a></li>
<li><a href="portfoliosingle02.html">Portfolio single 02</a></li>
</ul>
</li>
<li>
<a href="blog2.html">Blog</a>
<ul class="dl-submenu">
<li><a href="blog.html">Blog small image</a></li>
<li><a href="blog2.html">Blog big image</a></li>
<li><a href="blog3.html">Blog full no sidebar</a></li>
<li><a href="blogmasonry.html">Blog masonry</a></li>
<li><a href="blogmasonry02.html">Blog masonry no sidebar</a></li>
<li><a href="blogsingle.html">Blog single</a></li>
<li><a href="blogsingle02.html">Blog single full width</a></li>
</ul>
</li>
<li>
</li>
<li><a href="contact.html">Contact</a></li>
</ul><!-- .dl-menu end -->
</div><!-- #dl-menu.dl-menuwrapper end -->
<!-- #search-box start -->
<section id="search">
<form action="#" method="get">
<input class="search-submit" type="submit" />
<input id="m_search" name="s" type="text" placeholder="Type and hit enter..." />
</form>
</section><!-- #search-box end -->
</header><!-- .header end -->
</div><!-- .header-wrapper end -->
<!-- .tp-wrapper start -->
<div class="tp-wrapper">
<!-- .tp-banner-container start -->
<div class="tp-banner-container">
<div class="tp-banner">
<ul>
<!-- slide 1 start -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500">
<!-- main image -->
<img src="img/slider/slide-3-1.jpg" alt="slidebg1" data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat" />
<!-- layer 1 -->
<div class="tp-caption background lft"
data-x="center"
data-y="140"
data-speed="600"
data-start="1000"
data-easing="Back.easeOut"
data-endspeed="300">Leading <b>TowerCo</b>. Proven <b>Expertise</b>. Country <b>Knowledge</b>. High <b>Performance</b>.
</div>
<!-- layer 2 -->
<div class="tp-caption background paragraph lfb"
data-x="center"
data-y="220"
data-speed="600"
data-start="2000"
data-easing="Back.easeOut"
data-endspeed="500">OpexNetwork is the First TowerCo in Central Africa, set by industry experts <br />with regional experience of more than 15 years.
</div>
</li>
<!-- slide 2 start -->
<li data-transition="fade" data-slotamount="15" data-masterspeed="1500">
<!-- main image -->
<img src="img/slider/slide-1-1.jpg" alt="slidebg3" data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat" />
<!-- layer 1 -->
<div class="tp-caption regular lft"
data-x="center"
data-y="55"
data-speed="600"
data-start="1000"
data-easing="Back.easeOut"
data-endspeed="300">Passive Infrastructure <b>Leased</b> to our Clients <b>with major benefits</b>
</div>
<!-- layer 2 -->
<div class="tp-caption regular sfl"
data-x="center"
data-y="120"
data-speed="600"
data-start="1500"
data-easing="Back.easeOut"
data-endspeed="300"><img src='img/slider/slide-1-2.png' />
</div>
<!-- layer 3 -->
<div class="tp-caption list-right sfl"
data-x="40"
data-y="180"
data-speed="600"
data-start="2000"
data-easing="Back.easeOut"
data-endspeed="500"><p>CAPEX Reduction</p>
</div>
<!-- layer 4 -->
<div class="tp-caption list-right sfl"
data-x="80"
data-y="240"
data-speed="600"
data-start="2300"
data-easing="Back.easeOut"
data-endspeed="500"><p>OPEX Reduction</p>
</div>
<!-- layer 3 -->
<div class="tp-caption list-right sfl"
data-x="45"
data-y="300"
data-speed="600"
data-start="2600"
data-easing="Back.easeOut"
data-endspeed="500"><p>Quick Network Coverage</p>
</div>
<!-- layer 4 -->
<div class="tp-caption list-left sfr"
data-x="900"
data-y="180"
data-speed="600"
data-start="2900"
data-easing="Back.easeOut"
data-endspeed="500"><p>Core Business Focus</p>
</div>
<!-- layer 5 -->
<div class="tp-caption list-left sfr"
data-x="870"
data-y="240"
data-speed="600"
data-start="3200"
data-easing="Back.easeOut"
data-endspeed="500"><p>Subscribers Acquisition</p>
</div>
<!-- layer 6 -->
<div class="tp-caption list-left sfr"
data-x="840"
data-y="300"
data-speed="600"
data-start="3500"
data-easing="Back.easeOut"
data-endspeed="500"><p>Revenue Increase</p>
</div>
</li>
<!-- slide 3 start -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500">
<!-- main image -->
<img src="img/slider/slide-2-1.jpg" alt="slidebg2" data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat" />
<!-- layer 1 -->
<div class="tp-caption regular lft"
data-x="0"
data-y="80"
data-speed="600"
data-start="1000"
data-easing="Back.easeOut"
data-endspeed="300"><b>Best in class</b> Services with <b>Expert</b> Team.
</div>
<!-- layer 2 -->
<div class="tp-caption regular small sfl"
data-x="405"
data-y="130"
data-speed="600"
data-start="1500"
data-easing="Back.easeOut"
data-endspeed="300">That's OpexNetwork.
</div>
<!-- layer 3 -->
<div class="tp-caption lfr"
data-x="407"
data-y="150"
data-speed="600"
data-start="1700"
data-easing="Back.easeOut"
data-endspeed="300"><img src='img/slider/slide-2-2.png' alt='slider image'/>
</div>
<!-- layer 4 -->
<div class="tp-caption list-left sfl"
data-x="0"
data-y="170"
data-speed="600"
data-start="2200"
data-easing="Back.easeOut"
data-endspeed="300"><p>Build To Suit</p>
</div>
<!-- layer 5 -->
<div class="tp-caption list-left sfl"
data-x="0"
data-y="230"
data-speed="600"
data-start="2500"
data-easing="Back.easeOut"
data-endspeed="300"><p>Collocation</p>
</div>
<!-- layer 6 -->
<div class="tp-caption list-left sfl"
data-x="0"
data-y="290"
data-speed="600"
data-start="2700"
data-easing="Back.easeOut"
data-endspeed="300"><p>Buy & Lease-Back</p>
</div>
<!-- layer 7 -->
<div class="tp-caption list-left sfl"
data-x="0"
data-y="350"
data-speed="600"
data-start="2900"
data-easing="Back.easeOut"
data-endspeed="300"><p>Temporary Coverage Solutions</p>
</div>
<!-- layer 8 -->
<div class="tp-caption background sfl"
data-x="600"
data-y="350"
data-speed="600"
data-start="3100"
data-easing="Back.easeOut"
data-endspeed="300">We <b>drive your Signal</b> beyond the limits</b>...
</div>
</li>
<!-- slide 4 start -->
<li data-transition="fade" data-slotamount="7" data-masterspeed="1500">
<!-- main image -->
<img src="img/slider/slide-4-1.jpg" alt="slidebg1" data-bgfit="cover" data-bgposition="left top" data-bgrepeat="no-repeat" />
<!-- layer 1 -->
<div class="tp-caption background lft"
data-x="center"
data-y="400"
data-speed="600"
data-start="1000"
data-easing="Back.easeOut"
data-endspeed="300">No Other <b>TowerCo</b> Has Better <b>Experience</b> Of <b>Cameroon</b>Than <b>We Do</b>.
</div>
<!-- layer 2 -->
<div class="tp-caption background paragraph lfb"
data-x="center"
data-y="290"
data-speed="600"
data-start="2000"
data-easing="Back.easeOut"
data-endspeed="500">OpexNetwork has been built on a track record of more than 15 years experience & over 2,000 sites delivered to the 3 operators in Cameroon<br />.
</div>
</li>
</ul>
</div><!-- .tp-banner end -->
</div><!-- .tp-banner end -->
</div><!-- .tp-wrapper end -->
<!-- .page-content start -->
<section class="page-content">
<!-- .container start -->
<div class="container">
<!-- .row start -->
<div class="row">
<!-- .grid_4 start -->
<article class="grid_4">
<section class="service-box-2 triggerAnimation animated" data-animate="fadeInUp">
<div class="icon">
<i class="icon-hammer"></i>
</div>
<h5>Built to Suit</h5>
<p>
Our Team offers customized Build-to-Suit programs (Turn-key)
where satisfying the network requirements and deployment
needs of operators comes first.
</p>
<a href="services02.html" class="read-more">Read more...</a>
</section>
</article><!-- .grid_4 end -->
<!-- .grid_4 start -->
<article class="grid_4">
<section class="service-box-2 triggerAnimation animated" data-animate="fadeInDown">
<div class="icon">
<i class="icon-feed"></i>
</div>
<h5>Collocation</h5>
<p>
We make available to our customers space and services
on an existing tower to a mobile service provider who needs
point-to-point secure communication.
</p>
<a href="services02.html" class="read-more">Read more...</a>
</section>
</article><!-- .grid_4 end -->
<!-- .grid_4 start -->
<article class="grid_4">
<section class="service-box-2 triggerAnimation animated" data-animate="fadeInUp">
<div class="icon">
<i class="icon-exchange"></i>
</div>
<h5>Buy & Lease-Back</h5>
<p>
We buy network operator's towers and lease space,
and provide services back to them. This frees up their capital
and allow them to expand their network quickly.
</p>
<a href="services02.html" class="read-more">Read more...</a>
</section>
</article><!-- .grid_4 end -->
</div><!-- .row end -->
<div class="row">
<section class="grid_12">
<section class="heading-centered triggerAnimation animated" data-animate="bounceIn">
<h2>Over 2.000 <b>Sites</b> built for our clients in Cameroon</h2>
<p>Each member of our team has more than 15 years in the industry & in the country.</p>
</section>
</section>
</div><!-- .row end -->
<div class="row">
<article class="grid_4">
<div class="triggerAnimation animated" data-animate="fadeInLeft">
<ul class="icons-list icon-arrow-right-3-list big">
<li><p>Top notch expertise in Network Roll Out & Operations</p></li>
<li><p>Over 10,000 sites cumulated delivered by our Team</p></li>
<li><p>More than 2,000 sites delivered in Cameroon</p></li>
<li><p>World leading recognized Partner</p></li>
<li><p>Leading brand in the Telecom industry</p></li>
<li><p>3 offices in Cameroon</p></li>
</ul>
</div><!-- .triggerAnimation.animated end -->
</article><!-- .grid_4 end -->
<article class="grid_8">
<div class="triggerAnimation animated" data-animate="fadeInRight">
<img src="img/pictures/clients-map.jpg" alt="clients"/>
</div><!-- .triggerAnimation.animated end -->
</article><!-- .grid_8 end -->
</div><!-- .row -->
</div><!-- .container end -->
</section><!-- .page-content end -->
<!-- .page-content start -->
<section class="page-content parallax parallax-1" data-stellar-background-ratio="0.5">
<!-- .container start -->
<div class="container">
<!-- .row start -->
<div class="row">
<article class="grid_12">
<div class="triggerAnimation animated" data-animate="fadeInUp">
<section class="note">
<h2>OpexNetwork is an Cameroonn company & provides its clients perfect affordable solutions for quick network coverage.</h2>
<a class="btn-medium empty" href="services02.html">DISCOVER</a>
</section>
</div>
</article><!-- .grid_12 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</section><!-- .page-content end -->
<section class="page-content">
<div class="container">
<!-- .row start -->
<div class="row">
<article class="grid_12">
<section class="heading-centered triggerAnimation animated" data-animate="bounceIn">
<h2>Some <b>examples</b> of our achievements</h2>
<p>Check some of our sites in Cameroon. More to come soon...</p>
</section>
</article><!-- .grid_12 end -->
</div><!-- .roe end -->
<!-- .row start -->
<div class='row'>
<article class="grid_12">
<article class="portfolio-carousel triggerAnimation animated" data-animate="fadeInUp">
<ul id="portfolio-carousel" class="carousel-li">
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-1.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-1.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">Roof Top in Douala</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://www.pixel-industry.com/" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-2.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-2.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">40m Tower in the Esat side of the country</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://themeforest.net/item/elvyre-professional-corporate-psd-template/6218124" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-3.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-3.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">25m Tower in the South</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://themeforest.net/item/metropolis-clean-multipurpose-wordpress-theme/6050528" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-4.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-4.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">Mobile Station</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://themeforest.net/item/thalassa-extensive-html5-template/6012626" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-5.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-5.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">Camouflage Solutions</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://themeforest.net/item/cleanbiz-multipurpose-wordpress-theme/4935456" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
<li class="isotope-item">
<figure class="portfolio-img-container">
<div class="portfolio-img">
<img src="img/portfolio/cols/portfolio-6.jpg" alt="portfolio image"/>
<div class="portfolio-img-hover">
<div class="mask"></div>
<ul>
<li class="portfolio-zoom">
<a href="img/portfolio/cols/portfolio-6.jpg"
data-gal="prettyPhoto[pp_gallery]" class="icon-expand-2"></a>
</li>
<li class="portfolio-single">
<a href="portfolio2.html" class="icon-redo"></a>
</li>
</ul>
</div><!-- .portfolio-img-hover end -->
</div>
<figcaption>
<a class="title" href="portfolio2.html">Collocation</a>
<div class="sharre-facebook portfolio-item-like icon-heart" data-url="http://themeforest.net/item/alexx-multipurpose-wordpress-theme/3951507" data-text="Just an example of sharing your portfolio image"></div>
</figcaption>
</figure>
</li><!-- .isotope-item end -->
</ul>
<div class="clearfix"></div>
<ul class="carousel-nav">
<li>
<a class="c_prev" href="#"></a>
</li>
<li>
<a class="c_next" href="#"></a>
</li>
</ul>
</article><!-- .portfolio-carousel end -->
</article><!-- .grid_12 end -->
</div><!-- .row end -->
<div class="row">
<!-- grid_6 start -->
<article class="grid_6">
<div class="triggerAnimation animated" data-animate="fadeInUp">
<section class="heading-bordered">
<h3><b>Services</b> we provide</h3>
</section><!-- .heading-bordered end -->
<ul class="tabs">
<li class="active">
<a href="#tab1">Build to Suit</a>
</li>
<li class="">
<a href="#tab2">Collocation</a>
</li>
<li>
<a href="#tab3">Buy & Lease-Back</a>
</li>
<li>
<a href="#tab4">Specific Solutions</a>
</li>
</ul><!-- .tabs end -->
<!-- .tabs-content-wrap start -->
<section class="tab-content-wrap">
<!-- #tab1 content start -->
<div id="tab1" class="tab-content">
<p>
<img src="img/pictures/celltowerhigh.png" class="float-left" alt="image"/>
Our Team offers customized Build-to-Suit programs
(Turn-key) where satisfying the network
requirements and deployment needs of operators
comes first.
<br /><br />
</p>
</div><!-- #tab1 content end -->
<!-- #tab1 content start -->
<div id="tab2" class="tab-content">
<p>
<img src="img/pictures/antennamd.png" class="float-right" alt="image"/>
We make available to our customers space and
services on an existing tower to a mobile service
provider who needs point-to-point secure
communication.
</p>
</div><!-- #tab2 content end -->
<!-- #tab1 content start -->
<div id="tab3" class="tab-content">
<p>
<img src="img/pictures/celltowerhigh.png" class="float-left" alt="image"/>
We buy network operator's towers and lease
space, and provide services back to them.
This frees up their capital and allow them
to expand their network quickly.
</p>
</div><!-- #tab3 content end -->
<!-- #tab1 content start -->
<div id="tab4" class="tab-content">
<p>
<img src="img/pictures/roofantennamd.png" class="float-right" alt="image"/>
We provide our customer with temporary coverage
solutions like mobile stations, or any temporary
reinforcement of their subscribers reach.
<br /><br />
We also adapt our roll out to the environment
to make it non agressive and pleasant to the
landscape.
</p>
</div><!-- #tab2 content end -->
</section><!-- .tab-content-wrap end -->
</div><!-- .triggernAnimation.animated end -->
</article><!-- .grid_6 end -->
<article class="grid_3">
</article><!-- .grid_3 end -->
</div><!-- .row end -->
</div><!-- .container end -->
</section><!-- .page-content end -->
<!-- .footer-wrapper start -->
<section class="footer-wrapper">
<!-- .footer start -->
<footer id="footer">
<!-- .container start -->
<div class="container">
<!-- .row start -->
<div class="row">
<!-- animated fadeInTop -->
<section class="triggerAnimation animated" data-animate="fadeIn">
<!-- .footer-widget-container start -->
<ul class="grid_3 footer-widget-container">
<!-- .widget.widget_text start -->
<li class="widget widget_text clearfix">
<img src="img/logo-light.png" alt="OpexNetwork, The First and Leading TowerCo in Central Africa"/>
<br /> <br />
<p>
OpexNetwork is the leading Tower Company in Cameroon,
serving Telecom Operators, Broadcast, Security services, ...
We drive your signal beyond the limits...
</p>
<br /><br />
<!-- .newsletter start -->
<form class="newsletter">
<input type="email" class="email" placeholder="Enter your email here...">
<input type ="submit" class="submit" value="SEND">
</form><!-- .newsletter end -->
</li><!-- .widget.widget-text end -->
</ul> <!-- .footer-widget-container end -->
<!-- .footer-widget-container start -->
<ul class="grid_3 footer-widget-container">
<!-- .widget_tag_cloud start -->
<li class="widget widget_tag_cloud">
<h6>tag cloud</h6>
<div class="tagcloud">
<a href="services02.html">Telecommunications</a>
<a href="services02.html">Infrastructure</a>
<a href="services02.html">Network Roll Out</a>
<a href="services02.html">Sharing</a>
<a href="services02.html">Central Africa</a>
<a href="services02.html">Collocation</a>
<a href="services02.html">Buy & Lease-Back</a>
</div>
</li><!-- .widget_tag_cloud end -->
<!-- .widget_categories start -->
<!-- .widget_categories end -->
</ul><!-- .footer-widget-container end -->
<!-- .footer-widget-container start -->
<ul class="grid_3 footer-widget-container">
<!-- .widget.widget_text start -->
<li id="tweet-scroll-wrapper" class="widget clearfix">
<h6>news categories</h6>
<ul>
<li><a href="services02.html">Passive Infrastructure </a></li>
<li><a href="services02.html">Network Sharing </a></li>
</ul>
</ul><!-- .footer-widget-container end -->
<!-- .footer-widget-container start -->
<ul class="grid_3 footer-widget-container">
<!-- .widget.widget_text start -->
<li class="widget widget_text">
<h6>CONTACT INFO</h6>
<ul class="contact-info-list">
<li>
<p>
<i class="icon-home"></i>
<span class="strong">Address: </span>
5, Rue Abdelli Bakhti <br />
16212 Mohammadia, Douala, Cameroon
</p>
</li>
<li>
<p>
<i class="icon-phone"></i>
<span class="strong">Telephone: </span>
+237 (0) 9 82 40 13 46
</p>
</li>
<li>
<p>
<i class="icon-phone"></i>
<span class="strong">Fax: </span>
+237 (0) 9 82 40 13 51
</p>
</li>
</ul>
<br /><br />
<a class="underlined" href="contact.html">FIND US ON MAP</a>
</li><!-- .widget.widget_text end -->
</ul>
</section>
</div><!-- .row end -->
</div><!-- .container end -->
</footer><!-- .footer-end -->
<!-- .copyright-container start -->
<div class="copyright-container">
<!-- .container start -->
<div class="container">
<!-- .row start -->
<div class="row">
<section class="grid_6">
<p>Copyright OpexNetwork 2019. All Rights Reserved.</p>
</section>
<section class="grid_6">
<div class="footer-breadcrumbs">
<a href="home02.html">HOME</a>
<a href="about.html">ABOUT US</a>
<a href="services02.html">SERVICES</a>
<a href="portfolio2.html">ACHIEVEMENTS</a>