-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpipe.html
643 lines (601 loc) · 28.7 KB
/
pipe.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
* {box-sizing: border-box;}
.container{
position: relative;
}
nav {
overflow: hidden;
background-color:#c8c3b08b;
padding: 10px;
}
.material-icons.md-48 {
font-size: 48px; color: blue;
}
.links {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: bold;
float: left;
color:#af8057;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
background-color: #fffdd0;
margin-right: 10px;
width: 300px;
text-align: center;
}
h2{
font-size: 70px;
line-height: 70px;
color:#00008B;
}
.ddiv{
padding: 5px;
background-color: #c3b08b;
height: 10vh;
margin-right: 20px;
font-size: large;
color: #D76F30;
width: 400px;
}
.overlay {
position: absolute;
/* center overlay text */
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.overlay_2 {
top: 0;
right: 0;
left: 0;
bottom: 90%;
}
nav .links:hover {
background-color:#3c1321 ;
color: ivory;
}
nav .selected {
background-color: #c3b08b;
color: white;
}
.rightSection {
float: right;
}
@media screen and (max-width: 870px) {
nav .links
{
float: none;
display: block;
text-align: left;
}
.rightSection {
float: none;
}
}
.vision{
background-color: lightgray;
font-size: large;
font-family: Verdana, Geneva, Tahoma, sans-serif;
text-align: left;
color: #3c1321;
display: inline-block;
margin-left: 170px;
line-height:50px ;
border-radius: 20px;
padding: 30px;
}
.team{
background-color: #FFFDD0;
padding: 50px;
border-radius: 20px;
width: 100%;
}
.firstimage{
width: 100%;
height: 70vh;
position: relative;
left: 0px;
z-index: -1;
}
body{
background-color: lightgray;
margin: 0;
padding: 0;
font-family: Arial;
overflow-x: hidden;
}
.heading{
font-family:Fira Code iScript ;
font-style: italic;
color: #00008b;
font-size: 70px;
line-height: 70px;
text-align: center;
}
p{
z-index: 2;
position: relative;
font-size: 50px;
color: ivory;
}
.button{
color: #fffdd0;
padding: 20px;
border-radius: 20px;
border: 6px solid #FFFDD0 ;
width: 300px;
text-align: center;
background-color: #af8057;
display: flex;
justify-content: center;
}
.bottom-left {
position: relative;
bottom: 5rem;
left: 0rem;
color:ivory;
font-size: xx-large;
font-weight: 800;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-style: italic;
}
@media screen and (max-width: 768px){
.ul{
display: flex;
padding: 0;
margin: 0;
width: 100%;
font-size: xx-large;
color: #3c1321;
flex-wrap: wrap;
flex-direction: column;
}
.containerdivNewLine{
float: left;
display: block;
background-color:#c3b08b;
padding: 30px;
width: 100%;
}
.hhh{
background-color: #c3b08b;
padding: 50px;
}
/* * {
box-sizing: border-box;
} */
/* body {
margin: 0;
font-family: Arial;
overflow-x: hidden; */
}
.row {
display: -ms-flexbox; /* IE10 */
display: flex;
-ms-flex-wrap: wrap; /* IE10 */
flex-wrap: wrap;
padding: 0 4px;
}
/* Create four equal columns that sits next to each other */
.column {
-ms-flex: 25%; /* IE10 */
flex: 25%;
max-width: 25%;
padding: 0 4px;
position: relative;
}
.column img {
margin-top: 8px;
vertical-align: middle;
width: 100%;
}
/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
.column {
-ms-flex: 50%;
flex: 50%;
max-width: 50%;
}
}
/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
-ms-flex: 100%;
flex: 100%;
max-width: 100%;
}
}
.vl{
border-left: 6px solid #3c1321;
height: 50px;
position: absolute;
left: 50%;
margin-left: -3px;
}
/*
body {
background-color: #f1f1f1;
padding: 20px;
font-family: Arial;
} */
/* Center website */
.main {
max-width: 1000px;
margin: auto;
}
h1 {
font-size: 50px;
word-break: break-all;
}
.ro {
margin: 10px -16px;
}
/* Add padding BETWEEN each column */
.ro,
.ro > .col {
padding: 8px;
}
/* Create three equal columns that floats next to each other */
.col {
float: left;
width: 33.33%;
display: none; /* Hide all elements by default */
}
/* Clear floats after rows */
.ro:after {
content: "";
display: table;
clear: both;
}
/* Content */
.content {
background-color: white;
padding: 10px;
}
/* The "show" class is added to the filtered elements */
.show {
display: block;
}
/* Style the buttons */
.btn {
border: none;
outline: none;
padding: 12px 16px;
background-color: white;
cursor: pointer;
}
.btn:hover {
background-color: #ddd;
}
.btn.active {
background-color: #666;
color: white;
}
</style>
<script>
filterSelection("all")
function filterSelection(c) {
var x, i;
x = document.getElementsByClassName("col");
if (c == "all") c = "";
for (i = 0; i < x.length; i++) {
w3RemoveClass(x[i], "show");
if (x[i].className.indexOf(c) > -1) w3AddClass(x[i], "show");
}
}
function w3AddClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
if (arr1.indexOf(arr2[i]) == -1) {element.className += " " + arr2[i];}
}
}
function w3RemoveClass(element, name) {
var i, arr1, arr2;
arr1 = element.className.split(" ");
arr2 = name.split(" ");
for (i = 0; i < arr2.length; i++) {
while (arr1.indexOf(arr2[i]) > -1) {
arr1.splice(arr1.indexOf(arr2[i]), 1);
}
}
element.className = arr1.join(" ");
}
// Add active class to the current button (highlight it)
var btnContainer = document.getElementById("myBtnContainer");
var btns = btnContainer.getElementsByClassName("btn");
for (var i = 0; i < btns.length; i++) {
btns[i].addEventListener("click", function(){
var current = document.getElementsByClassName("active");
current[0].className = current[0].className.replace(" active", "");
this.className += " active";
});
}
</script>
</head>
<body>
<div class="container">
<nav>
<div class="rightSection">
<a class="selected links" href="h">Home</a>
<a class="links" href="#">Contact Us</a>
<a class="links" href="#">About Us</a>
<a class="links" href="#">More Info</a>
<a class="links" href="#">Register</a>
<a class="links" style="width: 50px; background-color: #c8c3b08b;" href="#"><i class="material-icons" style="font-size: 40px; color: #af8057; ">search</i></a>
<a class="links" style="width: 50px; background-color:#c8c3b08b;" href="#"><i class="material-icons" style="font-size: 40px; color: #af8057;">refresh</i></a>
<a class="links" style="width: 50px; background-color:#c8c3b08b;" href="#"><i class="material-icons" style="font-size: 40px; color: #af8057;">recommend</i></a>
<a class="links" style="width: 50px; background-color: #c8c3b08b;" href="#"><i class="material-icons" style="font-size: 40px; color: #af8057;">menu</i></a>
</nav>
<div style="position: relative;">
<img class="firstimage" src="ggggg.webp" alt="Snow" style="width:100%; height: 70vh; border-radius: 30px;">
<div class="overlay overlay_2">
<div class="heading" style="font-family: Fira Code iScript; color: #af8057;">Aphiagades</div></div>
<p class="bottom-left" style="z-index: 2; text-align: center; position: absolute;">We Provide an Unparalled <span><em style="color: rgb(3, 56, 9); font-size: 50px;">Experience...</em></span></p>
</div>
</div>
<h3 style="margin-left: auto; margin-right: auto; width: 100%; text-align: center; color: #af8057; background-color: darkgrey;">The Gadgets House provides services and concepts that are publicly distinguished from other stores.<br> Our reputation is built on the services we have rendered, our commitment, commitment to continual re-invention and striking chords with our esteemed clients.</h3>
<label align="center"><h4>Sign up with your Email Address</h4></label>
<div class="container">
<input align="center" style="width: 50%; opacity: 0.6; color:black ; margin-left: auto; margin-right: auto; height: 5vh; text-align: center; justify-content: center; display: flex;" required type="email" name="email" id="email" placeholder="[email protected]"><br><br>
<a align="center" href=""> <button align="center" class="button" style="justify-content: center; text-decoration: underline; margin-left: auto; margin-right: auto; display: flex;">GET STARTED</button></a>
</div>
<br>
<br>
<div class="hhh">
<div class="vision">
<ul>
<i class="material-icons">cloud</i>
<li>OUR VISION</li>
<hr align="left" style="width: 10%;">
<li>Sale of Quality and affordable gadgets.</li>
<li>Provision of unparalled experience.</li>
<li>Long lasting products.</li>
</ul>
</div>
<div class="vision">
<ul>
<i class="material-icons">computer</i>
<li>SOLUTIONS</li>
<hr align="left" style="width: 10%;">
<li>Best Gadget and Accessories.</li>
<li>Recomendations.</li>
<li>Help from our Engineer.</li>
</ul>
</div>
<div class="vision" style="background-color: ivory; color: #3c1321;">
<ul>
<i class="material-icons">smartphone</i>
<li>PRODUCTS</li>
<hr align="left" style="width: 10%; color: #5C4033;">
<li>Apple Products.</li>
<li>Samsung Products.</li>
<li>Head Sets and more.</li>
</ul>
</div>
</div>
<br>
<div class="vl"></div>
<br>
<div style="margin: 20px;">
<hr align="left" style="width: 10%; color: #5C4033;">
<h2 style="color: #3c1321;">Services.</h2>
<p><h3>WE WORK WITH YOU, NOT FOR YOU.</h3></p>
<div style="display: flex; text-align: center; justify-content: center;">
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Brand Identity<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Social Media<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Concept<i class="material-icons">arrow forward</i></h2></div>
</div>
<div style="display: flex; margin-top: 15px;justify-content: center; ">
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Reference<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Feedbacks<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Content Strategy<i class="material-icons">arrow forward</i></h2></div>
</div>
<div style="display: flex; margin-top: 15px; justify-content: center;">
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Logo<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color: #3c1321; text-align: center; font-size: large; height: 5vh;">Planning<i class="material-icons">arrow forward</i></h2></div>
<div class="ddiv"><h2 style="color:#3c1321; text-align: center; font-size: large; height: 5vh;">Planning<i class="material-icons">arrow forward</i></h2></div>
</div>
</div>
<br>
<div class="vl"></div>
<br>
<div class="containerdivNewLine" align="center">
<hr align="left" width="10%">
<p><h2 style="text-align: left; color: #3c1321;">Products.</h2></p>
<p><h3 style="color: ivory; text-align: left;">VARIETIES OF GADGETS YOU LOVE:</h3></p>
<div class="row" style="background-color: ivory;" >
<div class="column">
<img src="gadg.jpeg" style="width:100%">
<img src="newphone5.webp" style="width:100%">
<!-- <img src="images\parametric bench.jpg" style="width:100%"> -->
<!-- <img src="images\pexels-athena-2180883.jpg" style="width:100%">
<img src="images\pexels-designecologist-1008692.jpg" style="width:100%">
<img src="images\pexels-dmitry-zvolskiy-1544420.jpg" style="width:100%">
<img src="images\pexels-dominika-roseclay-1110562.jpg" style="width:100%">
<img src="images\pexels-donald-tong-189295.jpg" style="width:100%"> -->
</div>
<div class="column">
<img src="newwp.webp" style="width:100%">
<img src="kkk.webp" style="width:100%">
<!-- <img src="images\pexels-houzlook-com-3797991.jpg" style="width:100%">
<img src="images\pexels-igor-starkov-914388.jpg" style="width:100%">
<img src="images\pexels-juan-pablo-serrano-arenas-967016.jpg" style="width:100%">
<img src="images\pexels-ken-tomita-389819.jpg" style="width:100%"> -->
</div>
<div class="column">
<img src="kk.jpeg" style="width:100%">
<img src="monitor.webp" style="width:100%">
<!-- <img src="images\pexels-mali-maeder-112474.jpg" style="width:100%">
<img src="images\pexels-mike-b-116910.jpg" style="width:100%">
<img src="images\pexels-mike-b-130987.jpg" style="width:100%">
<img src="images\pexels-photo-4352247.jpeg" style="width:100%">
<img src="images\pexels-pixabay-259580.jpg" style="width:100%"> -->
</div>
<div class="column">
<img src="pexxx.webp" style="width:100%">
<img src="newpho.webp" style="width:100%">
<!-- <img src="images\pexels-vecislavas-popa-1571463.jpg" style="width:100%">
<img src="images\pexels-vecislavas-popa-1571468.jpg" style="width:100%">
<img src="images\pexels-vecislavas-popa-1571469.jpg" style="width:100%">
<img src="images\pexels-vecislavas-popa-1669799.jpg" style="width:100%"> -->
</div>
<a href="page2.html"> <button type="button" style="border-radius: 20px; text-decoration: underline; background-color: #3c1321; color: ivory; padding: 20px; margin-top: 20px; margin-left: 150px;">VIEW MORE</button></a>
</div>
<div class="vl"></div>
<hr width="10%" align="left">
<h2 style="color: #3c1321; text-align: left;">The Team.</h2>
<h3 align="left" style="font-size: x-large; color: #FFFDD0;">WE ARE NOT JUST A STORE</h3>
<h3 style="text-align: left; color:#FFFDD0; text-transform: capitalize; font-family: Tahoma; ">The gadgets house provides engineering services; <br>our Engineers are available for repair of your gadgets.</h3>
<div id="myBtnContainer">
<button class="btn active" onclick="filterSelection('all')"> Show all</button>
<button class="btn" onclick="filterSelection('2')"> Phones</button>
<button class="btn" onclick="filterSelection('3')"> System</button>
<button class="btn" onclick="filterSelection('4')"> Accessories</button>
</div>
<!-- Portfolio Gallery Grid -->
<div class="ro">
<div class="col 2">
<div class="content">
<img src="l.jpeg" alt="Mountains" style="width:100%">
</div>
</div>
<div class="col 3">
<div class="content">
<img src="repair2.jpg" alt="Lights" style="width:100%">
</div>
</div>
<div class="col 4">
<div class="content">
<img src="ttt.jpeg" alt="Nature" style="width:100%">
</div>
</div>
<div class="col 2">
<div class="content">
<img src="tt.webp" alt="People" style="width:100%">
</div>
</div>
<div class="col 3">
<div class="content">
<img src="t.jpeg" alt="Mountains" style="width:100%">
</div>
</div>
<div class="col 4">
<div class="content">
<img src="ddd.webp" alt="Mountains" style="width:100%">
</div>
</div>
<!-- END GRID -->
</div>
</div>
</div>
</div>
<div class="vl"></div>
<div class="hhh" style="display: flex;">
<div class="vision" style="background-color: ivory; color: #3c1321; width: 500px;">
<ul>
<i class="material-icons">cloud</i>
<li>Who We Are</li>
<hr align="left" style="width: 10%;">
<li>We are The Gadget House and we have been providing clients with quality yet affordable gadgets and technical support in Nigeria since 2005</li>
<li>Provision of unparalled experience.</li>
<li>Long lasting products.</li>
</ul>
</div>
<div class="vision" style="background-color: ivory; color: #3c1321; width: 500px;">
<ul>
<i class="material-icons">computer</i>
<li>Our Philosophy</li>
<hr align="left" style="width: 10%;">
<li>The Gadgets house promises to bring inspiration and innovation to every business owner in the world; with starbucks to inspire and nurture the driving spirit.</li>
<li>Recomendations.</li>
<li>Help from our Engineer.</li>
</ul>
</div>
<div class="vision" style="width: 500px;">
<ul>
<i class="material-icons">smartphone</i>
<li>How we work</li>
<hr align="left" style="width: 10%; color: #5C4033;">
<li>We capitalize on providing the best in the areas of distribution, production and repair.</li>
<li>You can check our App on google play store and app store.</li>
<li>Head Sets and more.</li>
</ul>
</div>
</div>
<div style="background-color: ivory; text-align: center;">
<img src="ph.webp" style="float: right; margin: 0 0 30px 10px; height: 60vh;">
<hr width="10%" style="color: #00008B;">
<h2 style="color: #3c1321;">What Our Clients Say.</h2>
<h3 style="color: #3c1321;">WE ARE MORE THAN A GADGET STORE</h3>
<P style=" display: inline-block; width: 50%; line-height: 50px; height: auto; color: #3c1321; font-size: larger; background-color: #FFFDD0; font-family: Verdana, Geneva, Tahoma, sans-serif;"><em> The contentment of our customers drives our motivation. Put your faith in us, and take pat in our expansion.<br> We are a group of tech-loving professionals who are skilled, dedicated and experienced.<br> Our goal is for our customers to be fulfilled after their patronage.<br> Do share in our growth and never regret it.</em><br><hr width="10%"><br><h3 style="color: #3c1321;">CEO. AREMO PIPELOLUWA.</h3></P>
</div>
<hr width="80%" align="center">
<div align="center">
<ul class="ul">
<li style="margin-right: 100px; font-size: x-large; color: #3c1321; border-right: #D76F30; font-family: verdana; display: inline-block;">d'<span style="font-weight: 800;">evices</span></li>
<li style="margin-right: 100px; font-size: x-large; color: #3c1321; font-weight: 900; font-family: arial; display: inline-block;">Technology</li>
<li style="margin-right: 100px; font-size: x-large; color: #3c1321; font-family: Franklin Gothic Medium; display: inline-block;">SUCCESS</li>
<li style="margin-right: 100px; font-size: x-large; color: #3c1321; font-weight: 900; font-family: Georgia; display: inline-block;">Accessories</li>
</ul>
<div class="vl"></div>
</div>
<div class="container">
<h2 style="color: #3c1321;">Latest News.</h2>
<p style="font-size: larger; color: #3c1321; font-weight: 700;">CHECK OUT SOME OF OUR THOUGHTS</p>
<p style="font-size: larger; color: #5c4033; font-weight: 700; margin-left: 20; margin-right: 20; text-align: center;">Your convenience is our top priority and that is why we care about your set up, we now have available super convenient chairs and adjustable tables for your use. We strive to always satisfy you by giving you the best gadgets which now includes electronic tables and chairs that can be adjustable. we hope that you value this new inclusion as much as we value your convenience.</p>
<div style=" border-radius: 20px; background-color:#c3b08b; padding: 30px; text-align: center; margin-left: auto; width: 8 0%; margin-right: auto;">
<div class="ro">
<div class="col">
<img src="pexels-photo-3937174.webp" alt="Snow" style="width:100%; border-radius: 20px;">
</div>
<div class="col">
<img src="pexels-photo-6636293.webp" alt="Forest" style="width:100%; border-radius:20px ;">
</div>
</div>
</div>
<br><br>
</div>
<div class="vl"></div>
<br><br>
<hr width="10%">
<div align="center" style="display: flex; background-color: #FFFDD0; flex-wrap: wrap;">
<div class="vision" style="background-color: #FFFDD0; color: #3c1321; width: 300px;">
<i class="material-icons" style="font-size: 60px; background-color:#3ddc84; color: white;">android</span></i>
<i class="material-icons" style="font-size: 60px; background-color: #3b5998; color: white;">facebook</i>
<i class="material-icons" style="font-size: 60px;">home</i>
</div>
<div class="vision" style="width: 300px; background-color: #FFFDD0;">
<ul>
<li>
<h2 style="color: #3c1321;">Let's Talk?</h2>
</li>
</ul>
</div>
<div class="vision" style="background-color: #FFFDD0; color: #3c1321; width: 300px;">
<a href="page1.html"> <button type="button" align="center" style="border-radius: 20px; text-align: center; justify-content: center; display: flex; margin-left: auto; font-size: larger; background-color: #5C4033; color:ivory; padding: 20px;">Make an enquiry!</button></a>
</div>
</div>
<div style="display: flex; margin-left: auto; margin-right: auto; flex-wrap: wrap; background-color: ivory; height: auto;">
<div class="vision" style="background-color: ivory; color: #D76F30; width: 500px;">
<h3 style="font-size: 20px;">Lagos<br><hr width="10%" align="left">+234 81122332</h3>
</div>
<div class="vision" style="background-color: ivory; color: #D76F30; width: 500px;">
<h3 style="font-size: 20px;">Abuja <br><hr width="10%" align="left">+234 55566611</h3>
</div>
</div>
</div>
<footer style=" padding: 50px; text-align: center; height: 10vh; background-color: rgb(49, 48, 48); color: white;"> @copyright peculiar 2023- All Rights Reserved.</footer>
</body>
</html>