-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·647 lines (530 loc) · 23.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Devfest - Kaduna 2019</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="devfest, devfest19, googlecloud, google Cloud Kaduna, GDG, GDG Kafanchan, GDC Kaduna, DSC, DSC KASU, google developers, google developers group, colab, colab kaduna, devfest 2019, #devfest, #devfest19, #devfestkaduna" name="keywords">
<meta content="DevFest are community-led, annual developer conference hosted by GDG chapters in Kaduna State focused on community building and learning about Google’s technologies" name="description">
<!-- Favicons -->
<link href="img/favicon.png" rel="icon">
<link href="img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700,700i|Raleway:300,400,500,700,800" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/venobox/venobox.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<!--==========================
Header
============================-->
<header id="header">
<div class="container">
<div id="logo" class="pull-left">
<!-- Uncomment below if you prefer to use a text logo -->
<!-- <h1><a href="#main">Devfest<span>o</span>Kaduna</a></h1> -->
<a href="#intro" class="scrollto"><img src="img/devfest.png" alt="" title=""></a>
</div>
<nav id="nav-menu-container">
<ul class="nav-menu">
<li class="menu-active"><a href="#intro">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#speakers">Speakers</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#venue">Venue</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#organisers">Organisers</a></li>
</ul>
</nav><!-- #nav-menu-container -->
</div>
</header><!-- #header -->
<!--==========================
Intro Section
============================-->
<section id="intro">
<div class="intro-container wow fadeIn">
<h1 class="mb-4 pb-0">The Annual GDG<br> DEVFEST Kaduna</h1>
<p class="mb-4 pb-0">19 October 2019, Colab Barnawa, Kaduna</p>
</div>
</section>
<main id="main">
<!--==========================
About Section
============================-->
<section id="about">
<div class="container">
<div class="row">
<div class="col-lg-6">
<h2>About Devfest Kaduna</h2>
<p>DevFests are community-led, developer conference hosted by GDG chapters in Kaduna State
focused on community building and learning about Google’s technologies.
Join us for a day of networking and learning as we present various topics of interest...</p>
</div>
<div class="col-lg-3">
<h3>Where</h3>
<p>Colab Innovation Hub <br>Barnawa, Kaduna State.</p>
</div>
<div class="col-lg-3">
<h3>When</h3>
<p>Saturday <br>19 October, 2019.</p>
</div>
</div>
</div>
</section>
<!--==========================
Speakers Section
============================-->
<section id="speakers" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Event Speakers</h2>
<p>World class expert speakers who have extensive knowledge of the topic. All speakers are curated by the panel of experts.</p>
<div class=" row mt-4 justify-content-center">
</div>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/auwalms.jpg" alt="Auwal MS" class="img-fluid">
<div class="details">
<h3><a href="#!">Auwal MS</a></h3>
<p>Keynote Speaker</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Abdulbasit.jpg" alt="AbdulBasit Kabir" class="img-fluid">
<div class="details">
<h3><a href="#!">AbdulBasit Kabir</a></h3>
<p>Building reliable software</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Demilade (1).jpg" alt="Demilade Agboola" class="img-fluid">
<div class="details">
<h3><a href="#!">Demilade Agboola</a></h3>
<p>Building an object detection model with Tensorflow</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Farida Adamu (1).jpeg" alt="Farida Adamu" class="img-fluid">
<div class="details">
<h3><a href="#!">Farida Adamu</a></h3>
<p>How data is powering the ML revolution</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Emeka Boris Ama (1).jpeg" alt="Emeka Boris Ama" class="img-fluid">
<div class="details">
<h3><a href="#!">Emeka Boris Ama</a></h3>
<p>Deploying ML Models on Google Platform</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Tim Olaleke (2).JPG" alt="Tim Olaleke" class="img-fluid">
<div class="details">
<h3><a href="#!">Tim Olaleke</a></h3>
<p>Deploying serveless applications with Google Cloud</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Umar Yusuf (1).jpeg" alt="Umar Yusuf" class="img-fluid">
<div class="details">
<h3><a href="#!">Umar Yusuf</a></h3>
<p>Building an accessible web for everyone</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/AbdulHakeem AbdulAleem.jpg" alt="AbdulHakeem AbdulAleem" class="img-fluid">
<div class="details">
<h3><a href="#!">AbdulHakeem AbdulAleem</a></h3>
<p>Resful Api development and best practices</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/Muhammad Abdulkadir.jpg" alt="Muhammad Abdulkadir" class="img-fluid">
<div class="details">
<h3><a href="#!">Muhammad Abdulkadir</a></h3>
<p>JAVA & XML, an introduction</p>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="speaker">
<img src="img/speakers/jeremiah.jpeg" alt="Jeremiah Jacob" class="img-fluid">
<div class="details">
<h3><a href="#!">Jeremiah Jacob</a></h3>
<p>Flutter Taking Over</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Schedule Section
============================-->
<section id="schedule" class="section-with-bg">
<div class="container wow fadeInUp">
<div class="section-header">
<h2>Event Schedule</h2>
<p>Here is our event schedule</p>
</div>
<h3 class="sub-heading">This event is completely free, and you get to catch up wilth the
latest google techonlogies and swags will be available with some awesome perks and goodies!</h3>
<div class="row justify-content-center">
<!-- Schedule Day -->
<div class="col-lg-9 fade show active" id="day-1">
<div class="row schedule-item">
<div class="col-md-2"><time>09:00 AM</time></div>
<div class="col-md-10">
<h4>Arrivals & Registration</h4>
<p>Attendees are expected to register before entering the event hall.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<h4>Networking</h4>
<p>Ice Breaker and Networking</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:30 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker name">
</div>
<h4>Keynote <span>Peter Okukogwu</span></h4>
<p>Devfest Keynote.</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>10:00 AM</time></div>
<div class="col-md-10">
<h4>Breakfast</h4>
<p>Breakfast for all attendees</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:00 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Building reliable software<span>AbdulBasit Kabir</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>11:30 AM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Building an object detection model with Tensorflow<span>Demilade Agboola</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>How data is powering the ML revolution <span>Farida Adamu</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>12:30 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Deploying ML Models on Google Platform <span>Emeka Boris Ama</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Deploying serveless applications with Google Cloud<span>Tim Olaleke</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>01:30 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Building an accessible web for everyone<span>Umar Yusuf</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>Resful Api development and best practices <span>AbdulHakeem AbdulAleem</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:00 PM</time></div>
<div class="col-md-10">
<div class="speaker">
<img src="img/speakers/user.jpg" alt="Speaker's name">
</div>
<h4>JAVA & XML, an introduction <span>Muhammad Abdulkadir</span></h4>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>02:30 PM</time></div>
<div class="col-md-10">
<h4>Launch</h4>
<p>Launch for all attendees</p>
</div>
</div>
<div class="row schedule-item">
<div class="col-md-2"><time>03:00 PM</time></div>
<div class="col-md-10">
<h4>Closing.</h4>
<p>Closing and taking of group pictures</p>
</div>
</div>
</div>
<!-- Schedule Day-->
</div>
</div>
</section>
<!--==========================
Venue Section
============================-->
<section id="venue" class="wow fadeInUp">
<div class="container-fluid">
<div class="section-header">
<h2>Event Venue</h2>
<p>Event venue location info and gallery</p>
</div>
<div class="row no-gutters">
<div class="col-lg-6 venue-map">
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3923.236275060262!2d7.425836764438933!3d10.482031267425617!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x104d3584af3a5cf7%3A0x762b15300c9a108f!2sCoLab!5e0!3m2!1sen!2sng!4v1561653774722!5m2!1sen!2sng" frameborder="0" style="border:0" allowfullscreen></iframe>
</div>
<div class="col-lg-6 venue-info">
<div class="row justify-content-center">
<div class="col-11 col-lg-8">
<h3>Colab Barnawa, Kaduna.</h3>
<p>Address: No. 4 Barnawa Close,Off Challawa Crescent, Barnawa, Kaduna.
<br/> Phone:
+2349072090000, +234815555699
<br/>Email: hi@colab.com.ng
</p>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid venue-gallery-container">
<div class="row no-gutters">
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="img/venue-gallery/11.png" class="venobox" data-gall="venue-gallery">
<img src="img/venue-gallery/11.png" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="img/venue-gallery/22.jpg" class="venobox" data-gall="venue-gallery">
<img src="img/venue-gallery/22.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="img/venue-gallery/33.jpg" class="venobox" data-gall="venue-gallery">
<img src="img/venue-gallery/33.jpg" alt="" class="img-fluid">
</a>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="venue-gallery">
<a href="img/venue-gallery/44.png" class="venobox" data-gall="venue-gallery">
<img src="img/venue-gallery/44.png" alt="" class="img-fluid">
</a>
</div>
</div>
</div>
</div>
</section>
<!--==========================
Sponsors Section
============================-->
<section id="sponsors" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Sponsors</h2>
</div>
<div class="row no-gutters sponsors-wrap clearfix">
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="sponsor-logo">
<img src="img/sponsors/googledevs.png" title="google developers" class="img-fluid" alt="google developers">
</div>
</div>
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="sponsor-logo">
<img src="img/sponsors/colab.png" title="colab kaduna" class="img-fluid" alt="colab logo">
</div>
</div>
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="sponsor-logo">
<img src="img/sponsors/villaria.png" title="villaria ventures" class="img-fluid" alt="villaria venture">
</div>
</div>
</div>
</div>
</section>
<!--==========================
F.A.Q Section
============================-->
<section id="faq" class="wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>F.A.Q </h2>
</div>
<div class="row justify-content-center">
<div class="col-lg-9">
<ul id="faq-list">
<li class="main">
<a data-toggle="collapse" href="#faq3" class="open collapsed">Dates and location <i class="fa fa-minus-circle"></i></a>
<div id="faq3" class="collapse" data-parent="#faq-list">
<p>
GDG DevFest Kaduna will take place on the 19th of October in Kaduna at Colab Inovation Hub Barnawa (off Challawa Crescent), Kaduna.
<h6>Stay Informed</h6>
To stay up to date on the latest information on sessions, speakers, and activities, be sure to visit the DevFest website,
RSVP on <a href="https://www.meetup.com/GCDCKaduna/events/262393968/">Meetup</a> and follow us on <a href="#">Twitter</a>.
You can also follow and join the social conversation about GDG DevFest Kaduna
via official hashtags #devfestkaduna and #Devfest19. In addition, we'll be emailing important information to all registered attendees,
along with check-in instructions prior to the conference.
</p>
</div>
</li>
<li class="main">
<a data-toggle="collapse" href="#faq2" class="open collapsed">Attendance Details <i class="fa fa-minus-circle"></i></a>
<div id="faq2" class="collapse" data-parent="#faq-list">
<p>
<h6>Language</h6>
<p>All presentations at GDG DevFest Kaduna will be in English.</p>
<h6>Pro Tips</h6>
<p>Here are some useful tips to navigate your way through the conference:
<ul>
<li>Lost & Found: Will be located at the Conference Info Desk (Registration point) during event hours.
Any items left overnight will be turned over to the Colab Personel.</li>
<li>Launch: Attendees are invited to have a lunch at one of the halls at Colab Innovation Hub.</li>
<li>After Hours: some after hours info....</li>
</ul>
</p>
<h6>Badges & Badge Pick-up</h6>
<p> To expedite the check-in process, we’ll begin badge pick-up on the event day, October 19, at the event venue.
Make sure to reister on our meetup page to have your name printed on your badge, as we’ll need to verify it prior to assigning you
your GDG DevFest Kaduna badge. If you haven't registered online, you'll need to be registered at the event venue before entering the conference hall.</p>
<h6>No Soliciting</h6>
<p>No solicitation or selling of items or services is allowed at GDG DevFest Kaduna. Any attendee conducting these activities may be removed from the conference.</p>
</p>
</div>
</li>
</ul>
</div>
</div>
</div>
</section>
<!--==========================
Organisers Section
============================-->
<section id="organisers" class="section-with-bg wow fadeInUp">
<div class="container">
<div class="section-header">
<h2>Organisers</h2>
</div>
<div class="row no-gutters organisers-wrap clearfix">
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="organiser-logo">
<img src="img/organisers/GDG Kaduna.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="organiser-logo">
<img src="img/organisers/kafanchan.png" class="img-fluid" alt="">
</div>
</div>
<div class="col-lg-4 col-md-4 col-xs-6">
<div class="organiser-logo">
<img src="img/organisers/kasulogo.png" class="img-fluid" alt="">
</div>
</div>
</div>
</div>
</section>
</main>
<!--==========================
Footer
============================-->
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 footer-info">
<img src="img/logo.png" alt="TheEvenet">
<p>DevFests are community-led, developer conference hosted by GDG chapters in Kaduna State focused on community building and learning about Google’s technologies.</p>
</div>
<div class="col-lg-6 col-md-6 footer-contact">
<h4>Social media links, #devfestkaduna, #Devfest19</h4>
<div class="social-links">
<a href="#" class="twitter"><i class="fa fa-twitter"></i></a>
<a href="#" class="facebook"><i class="fa fa-facebook"></i></a>
<a href="#" class="instagram"><i class="fa fa-instagram"></i></a>
<a href="#" class="google-plus"><i class="fa fa-google-plus"></i></a>
<a href="#" class="linkedin"><i class="fa fa-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</footer><!-- #footer -->
<a href="#" class="back-to-top"><i class="fa fa-angle-up"></i></a>
<!-- JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/jquery/jquery-migrate.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="lib/easing/easing.min.js"></script>
<script src="lib/superfish/hoverIntent.js"></script>
<script src="lib/superfish/superfish.min.js"></script>
<script src="lib/wow/wow.min.js"></script>
<script src="lib/venobox/venobox.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<!-- Main Javascript File -->
<script src="js/main.js"></script>
</body>
</html>