-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
595 lines (563 loc) · 30.9 KB
/
index.html
File metadata and controls
595 lines (563 loc) · 30.9 KB
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
<!DOCTYPE html>
<html lang="en">
<!-- Code Space Developers are the only one authorised to edit this Code Do not Edit !!!! -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- jQuery CDN -->
<!-- jQuery library (served from Google) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Swiper Css -->
<link rel="stylesheet" href="https://unpkg.com/swiper@8/swiper-bundle.min.css" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Mdbootstrap CSS -->
<link rel="stylesheet" href="Assets/vendors/mdbootstrap/css/mdb.min.css">
<!-- Core CSS -->
<link rel="stylesheet" href="Assets/css/index.css">
<link rel="shortcut icon" href="./Assets/img/fav.jpg" type="image/x-icon">
<title>Code Space</title>
</head>
<body>
<!-- Main Header -->
<header class="main-header header">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="/">Code Space</a>
<button class="navbar-toggler" type="button" data-mdb-toggle="collapse" data-mdb-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<img src="Assets/img/icons/menu-bar.svg" alt="" class="navbar-toggler-icon">
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<!-- Nav Links -->
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/pages/about.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Community</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- container -->
<div class="container-fluid">
<!-- Showcase -->
<div class="showcase">
<!-- Showcase Row Container -->
<div class="row">
<!-- Text Container -->
<div class="col-lg-5 pt-md-5 mt-md-5 pb-md-5 pb-2 showcase-text-container">
<h1 class="showcase-title mb-4 mt-4"><img src="Assets/img/icons/line-arrow.svg" alt=""
class="showcase-arrow-icon-svg">Rewriting the African Narrative through <span
class="brand">Technology</span></h1>
<p class="mb-8 showcase-bio"><span class="brand text-uppercase">Codespace</span> is a Platform
that aims to
build a
community
for
teenagers. The platform aims to
show the world how ready and capable we teenagers are to rewrite the African narrative
through <span class="brand">Technology</span>.
</p>
<!-- Social Container -->
<div class="showcase-socials mb-4">
<p>Follow Us</p>
<a href="" class="social-link"><img src="Assets/img/icons/Instagram.svg" alt=""
class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/twitter.svg" alt=""
class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/telegram.svg" alt=""
class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/slack.svg" alt=""
class="social-icon"></a>
</div>
<!-- Button Container -->
<div class="showcase-btn-container mt-5 mb-md-5 pb-md-5 text-sm-center text-md-start">
<a href="" class="btn btn-primary btn-lg "><span>Discover more</span> <img
src="Assets/img/icons/foward-button.svg" alt=""></a>
<a href="" class="btn btn-outline-black btn-lg">Join the Community</a>
</div>
</div>
<!-- Image Column Container -->
<div class="col-lg-7 showcase-img-container">
<img src="Assets/img/header-img.png" class="img-fluid w-75 w-responsive showcase-img" alt="">
</div>
</div>
</div>
</div>
</header>
<!-- Main -->
<main>
<div class="container-fluid pt-5 pb-5">
<!-- Team Section -->
<section class="team-section pt-5">
<h4 class="text-uppercase brand mb-2 ">Our team</h4>
<h2 class="mb-2">Team of Designers <br class="br"> and Developers</h2>
<!-- Slider -->
<div class="team-slider swiper mt-5 pt-2">
<div class="swiper-wrapper mb-3">
<!-- Team Slider Item -->
<div class="swiper-slide">
<div class="team-slider-item">
<img src="Assets/img/team/edwin.png" class="team-img w-responsive img-fluid w-100"
alt="" />
<h3>Edwin Igwegbuike</h3>
<p>Designer</p>
</div>
</div>
<!-- End of Team Slider Item i-->
<!-- Team Slider Item -->
<div class="swiper-slide">
<div class="team-slider-item">
<img src="Assets/img/team/john.png" class="team-img w-responsive img-fluid w-100"
alt="" />
<h3>John Oseni</h3>
<p>Web and Blockhain Developer</p>
</div>
</div>
<!-- End of Team Slider Item i-->
<!-- Team Slider Item -->
<div class="swiper-slide">
<div class="team-slider-item">
<img src="Assets/img/team/odetola.png" class="team-img w-responsive img-fluid w-100"
alt="" />
<h3>Odetola Oreoluwa</h3>
<p>Graphics Designer</p>
</div>
</div>
<!-- End of Team Slider Item i-->
<!-- Team Slider Item -->
<div class="swiper-slide">
<div class="team-slider-item">
<img src="Assets/img/team/isabella.png" class="team-img w-responsive img-fluid w-100"
alt="" />
<h3>Isabella Enaworu</h3>
<p>Chief Marketing Officer</p>
</div>
</div>
<!-- End of Team Slider Item i-->
</div>
<div class="swiper-pagination"></div>
</div>
</section>
<!-- Intro Section -->
<section class="intro-section pt-md-4">
<div class="row pt-md-5 pb-5 g-5">
<div class="col-md-6 pt-sm-3 pt-md-5 mt-sm-3 mt-md-5 intro-text order-sm-last order-md-first">
<h2>We are changing the <br> Future With <span class="line-and-text-container"><span
class="brand">Technology</span> <img src="Assets/img/icons/line.svg" alt=""
class="img-fluid line"></span></h2>
<!-- <div class="line-container ">
<img src="Assets/img/icons/line.svg" alt="" class="img-fluid w-50 ">
</div> -->
<p class="pt-3">The world is not changed by people but by we <span class="brand">GenZ</span>.
Big things
require great collaboration
and there are no epic heroes but groups of epic people building the future.</p>
</div>
<div class="col-md-6 order-sm-1 order-md-2">
<img src="Assets/img/intro.png" alt="" class="w-100 w-responsive img-fluid ">
</div>
</div>
</section>
<!-- Team Projects Section -->
<section class="team-projects pt-lg-5 pb-lg-4">
<h1 class="team-projects-h1">
Team Projects
</h1>
<p class="team-projects-bio-p text-center">CODESPACE is a Platform that aims to build a
community for
teenagers. The
platform aims to <br class="br"> show the world how ready and capable We teenagers are to rewrite
the African
narrative <br class="br"> through technology.</p>
<!-- Slider -->
<div class="team-project-slider swiper mt-5 pt-2">
<div class="swiper-wrapper mb-3">
<!-- Team Project Slider Item -->
<div class="swiper-slide">
<div class="team-project-slider-item afro-watch">
<div class="team-project-header pt-5">
<h1 class="project-title">
Afro Watch
</h1>
<img src="Assets/img/team/clinton.png" alt=""
class="project-owner-bitmoji w-25 w-responsive img-fluid">
</div>
<p class="pt-2">Afro Watch is platform where you can stream over 100 + Live tv channels
on the go.
Without any interruption. and data consumption are well calculated. </p>
<p>Built by: <span class="bold">Clinton Imaro</span></p>
<a href="" class="btn btn-dark btn-lg mb-4 mt-2">View Project </a>
</div>
</div>
<!-- End of Team Project Slider Item -->
<!-- Team Project Slider Item -->
<div class="swiper-slide">
<div class="team-project-slider-item covdash">
<div class="team-project-header pt-5">
<h1 class="project-title">
Covdash
</h1>
<img src="Assets/img/team/precious.png" alt=""
class="project-owner-bitmoji w-25 w-responsive img-fluid">
</div>
<p class="pt-2">Mirum est notare quam littera gothica, quam nunc putamus parum claram,
anteposuerit litterarum formas </p>
<p>Built by: <span class="bold">Precious Solomon Kayili</span></p>
<a href="" class="btn btn-dark btn-lg mb-4 mt-2">View Project </a>
</div>
</div>
<!-- End of Team Project Slider Item -->
<!-- Team Project Slider Item -->
<div class="swiper-slide">
<div class="team-project-slider-item gpa-calculator">
<div class="team-project-header pt-5">
<h1 class="project-title">
GPA Calculator
</h1>
<img src="Assets/img/team/precious.png" alt=""
class="project-owner-bitmoji w-25 w-responsive img-fluid">
</div>
<p class="pt-2">You can use this app to keep track and calculate your GPA. This
calculator had been modified and tested to serve its purpose</p>
<p>Built by: <span class="bold">Ameer Bamigbayan</span></p>
<a href="" class="btn btn-dark btn-lg mb-4 mt-2">View Project </a>
</div>
</div>
<!-- End of Team Project Slider Item -->
</div>
</div>
</section>
<!-- Headline Section -->
<section class="headline">
<div class="text-container">
<div class="title-and-link-container pb-3">
<h1>What is CodeSpace ?</h1>
<a href="" class="more">Want to see more...?</a>
</div>
<p class="pb-3">Code Space is a tech brand that is focused on the technological advancement on <br
class="br">Africa via her
array of projects that is meant to proffer solutions to problems</p>
</div>
<div class="headline-grid row gap-3 flex-nowrap">
<div class="col-md-6 p-0 clinton-headline-container">
<img src="Assets/img/headline-img/clinton.png" class="w-responsive w-100 h-100 img-fluid"
alt="">
<h2>Clinton Imaro: 17-Year-Old Prodigy & Founder Of Code Space and Afro Watch</h2>
<p>This week, DT Africa reported on 15-year-old John Oseni, a crypto guru and author of 4 tech
books. Today, we are throwing the spotlight on 17-year-old Clinton Imaro.
</p>
</div>
<div class="col-md-6">
<div class="row p-0 gap-3">
<div class="col-md-12 p-0 building-future-headline">
<img src="Assets/img/headline-img/future-build-img.png"
class="w-responsive w-100 img-fluid" alt="">
<h2>We are the future and we are ready to build it</h2>
</div>
<div class="row p-0 m-auto gap-2 flex-nowrap ">
<div class="col-md-6 p-0 oseni-headline">
<img src="Assets/img/headline-img/oseni.png" alt=""
class="w-responsive w-100 img-fluid">
<h3>16-year-old tech prodigy john oseni is building a sustainable future</h3>
</div>
<div class="col-md-6 p-0 precious-kayili-headline"><img
src="Assets/img/headline-img/precious.png" alt=""
class="w-responsive w-100 img-fluid">
<h3>15-year-old precious is the creator of ridges an online platform that connects
the farmer directly to potential <br class="br"> buyers</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="vision-section-container">
<div class="row pt-md-4 mt-md-4 gap-5 gap-lg-0">
<div class="col-lg-6 vision-section-img-container">
<img src="Assets/img/icons/vision-img.png" class="w-responsive w-75 img-fluid" alt="">
<img src="Assets/img/icons/shadow-vision-img.png" alt="" class="w-responsive w-75 img-fluid">
</div>
<div class="col-lg-6 vision-section-text-container">
<h2 class="brand">Vision</h2>
<p>Our <span class="brand bold">vision</span> is to rewrite <span class="brand bold">African <br
class="br">
Narrative</span> through <span class="brand bold">Technology</span>.
</p>
</div>
</div>
</section>
</div>
<!-- Build your dream section -->
<section class="build-your-dream-container">
<div class="container-fluid">
<div class="row gap-5 gap-lg-0">
<div class="col-lg-6 build-your-dream-text-container ">
<h1>Help To Build Your <br class="br"> Dream Project</h1>
<p>A digital agency is a business you hire to outsource <br class="br"> your digital marketing
efforts, instead
of handling in-house.</p>
<a href="" class="btn btn-light btn-lg text-uppercase">Contact now</a>
</div>
<div class="col-lg-6 build-your-dream-img-container">
<img src="Assets/img/icons/build-your-dream-img.png"
class="img-fluid w-75 w-responsive build-future-project-img-1" alt="">
<img src="Assets/img/icons/build-your-dream-img-shadow.png" class="img-fluid w-75 w-responsive"
alt="">
</div>
</div>
</div>
</section>
<!-- Faq Section -->
<section class="faq-section">
<div class="container-fluid pt-5 pb-5 text-center">
<img src="Assets/img/faqs-img.png" alt="" class="w-100 w-responsive img-fluid">
</div>
</section>
<!-- Testimonial section -->
<section class="testimonial-section">
<div class="container-fluid">
<h2 class="pt-4 pb-4">We Are Loved By Our Users <br class="br"> And Clients Worldwide</h2>
<!-- Testimonial Slider -->
<div class="testimonial-slider swiper mt-2 pt-4 pb-3">
<div class="swiper-wrapper mb-3">
<!-- Testimonial Item Slider Start -->
<div class="swiper-slide">
<div class="testimonial-slider-item">
<div class="testimonial-item-container">
<div class="testimonial-header">
<p>
<span class="brand bold"> Clinton Imaro </span>This is a wonderful one. This
will
help
a lot of people in getting
a better understanding of becoming a Software Developer by joining in a
community.
Very brilliant idea.
</p>
</div>
<div class="testimonial-footer">
<div class="testimonial-img-and-text-container">
<img src="Assets/img/testimonials-imgs/testimonial-1-img.png" alt=""
class="w-25 w-responsive img-fluid testimonial-img">
<div class="text-container">
<span class="brand h4 mb-0 bold">Augustine Ugbaja</span>
<span class="brand mb-0">Fullstack Developer</span>
</div>
</div>
<div class="testimonial-stars-and-rating">
<p class="rating bold m-0">4.0</p>
<div class="stars">
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of Testimonial Item Slider Item -->
<!-- Testimonial Item Slider Start -->
<div class="swiper-slide">
<div class="testimonial-slider-item">
<div class="testimonial-item-container">
<div class="testimonial-header">
<p>
<span class="brand bold"> Clinton Imaro </span>This is a wonderful one.
This
will
help
a lot of people in getting
a better understanding of becoming a Software Developer by joining in a
community.
Very brilliant idea.
</p>
</div>
<div class="testimonial-footer">
<div class="testimonial-img-and-text-container">
<img src="Assets/img/testimonials-imgs/testimonial-2-img.png" alt=""
class="w-25 w-responsive img-fluid testimonial-img">
<div class="text-container">
<span class="brand h4 mb-0 bold">Ronald Richards</span>
<span class="brand mb-0">UI/UX Designer</span>
</div>
</div>
<div class="testimonial-stars-and-rating">
<p class="rating bold m-0">4.0</p>
<div class="stars">
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star w-25"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of Testimonial Item Slider Item -->
<!-- Testimonial Item Slider Start -->
<div class="swiper-slide">
<div class="testimonial-slider-item">
<div class="testimonial-item-container">
<div class="testimonial-header">
<p>
<span class="brand bold"> Clinton Imaro </span>This is a wonderful one.
This
will
help
a lot of people in getting
a better understanding of becoming a Software Developer by joining in a
community.
Very brilliant idea.
</p>
</div>
<div class="testimonial-footer">
<div class="testimonial-img-and-text-container">
<img src="Assets/img/testimonials-imgs/testimonial-2-img.png" alt=""
class="w-25 w-responsive img-fluid testimonial-img">
<div class="text-container">
<span class="brand h4 mb-0 bold">Ronald Richards</span>
<span class="brand mb-0">UI/UX Designer</span>
</div>
</div>
<div class="testimonial-stars-and-rating">
<p class="rating bold m-0">4.0</p>
<div class="stars">
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star star-filled w-25"></i>
<i class="fa-solid fa-star w-25"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- End of Testimonial Item Slider Item -->
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section>
</main>
<!-- Main Footer -->
<footer class="main-footer">
<div class="container-fluid">
<h2 class="bold">CodeSpace.</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quaerat architecto <br class="br"> itaque
necessitatibus veniam incidunt unde rerum eum!</p>
<h4 class="bold">Send us a question <span class="brand"><a href="">hello@codespace.com</a></span></h4>
<!-- <div class="socials-container">
</div> -->
<!-- Social Container -->
<div class="showcase-socials mb-3">
<a href="" class="social-link"><img src="Assets/img/icons/Instagram.svg" alt="" class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/twitter.svg" alt="" class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/telegram.svg" alt="" class="social-icon"></a>
<a href="" class="social-link"><img src="Assets/img/icons/slack.svg" alt="" class="social-icon"></a>
</div>
<p class="copyright-text"> </p>
© 2022 | <br class="br-sm"> Alright Reserved By CodeSpace
</div>
</footer>
</body>
<!-- Mdbootstrap Js -->
<script src="Assets/vendors/mdbootstrap/js/mdb.min.js"></script>
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Swiper Js -->
<script src="https://unpkg.com/swiper@8/swiper-bundle.min.js"></script>
<script>
new Swiper(".team-slider", {
speed: 600,
loop: true,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
slidesPerView: "auto",
breakpoints: {
320: {
slidesPerView: 2,
spaceBetween: 20,
},
1200: {
slidesPerView: 4,
spaceBetween: 30,
},
},
});
</script>
<script>
new Swiper(".team-project-slider", {
speed: 600,
loop: true,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
slidesPerView: "auto",
breakpoints: {
320: {
slidesPerView: 1,
spaceBetween: 40,
},
1200: {
slidesPerView: 4,
spaceBetween: 85,
},
},
});
</script>
<script>
new Swiper(".testimonial-slider", {
speed: 600,
loop: true,
autoplay: {
delay: 5000,
disableOnInteraction: false,
},
slidesPerView: "auto",
pagination: {
el: ".swiper-pagination",
type: "bullets",
clickable: true,
},
breakpoints: {
320: {
slidesPerView: 1,
spaceBetween: 100,
},
700: {
slidesPerView: 2,
spaceBetween: 160,
},
980: {
slidesPerView: 3,
spaceBetween: 150,
},
},
});
</script>
</html>