forked from Luckyjoseph/GitHub-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
783 lines (682 loc) · 26.2 KB
/
Copy pathindex.html
File metadata and controls
783 lines (682 loc) · 26.2 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Workshop - GitHub User Group Kaduna</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
background-color: #f8f9fa;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Header */
header {
background: linear-gradient(135deg, #24292e, #444d56);
color: white;
padding: 1rem 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
font-size: 1.5rem;
font-weight: bold;
}
.logo i {
margin-right: 10px;
font-size: 2rem;
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: white;
text-decoration: none;
transition: color 0.3s;
}
nav a:hover {
color: #58a6ff;
}
/* Hero Section */
.hero {
background: linear-gradient(135deg, #0d1117, #24292e);
color: white;
padding: 5rem 0;
text-align: center;
}
.hero h1 {
font-size: 3.5rem;
margin-bottom: 1rem;
background: linear-gradient(45deg, #58a6ff, #79c0ff);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero p {
font-size: 1.3rem;
margin-bottom: 2rem;
opacity: 0.9;
}
.cta-button {
display: inline-block;
background: #238636;
color: white;
padding: 1rem 2rem;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: all 0.3s;
border: none;
cursor: pointer;
}
.cta-button:hover {
background: #2ea043;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(35, 134, 54, 0.3);
}
/* Workshop Info Section */
.workshop-info {
padding: 4rem 0;
background: white;
}
.section-title {
text-align: center;
font-size: 2.5rem;
margin-bottom: 3rem;
color: #24292e;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}
.info-card {
background: #f6f8fa;
padding: 2rem;
border-radius: 12px;
text-align: center;
border: 2px solid #e1e4e8;
transition: transform 0.3s, box-shadow 0.3s;
}
.info-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-color: #58a6ff;
}
.info-card i {
font-size: 3rem;
color: #58a6ff;
margin-bottom: 1rem;
}
.info-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #24292e;
}
/* Schedule Section */
.schedule {
padding: 4rem 0;
background: #f6f8fa;
}
.schedule-timeline {
max-width: 800px;
margin: 0 auto;
}
.timeline-item {
display: flex;
margin-bottom: 2rem;
background: white;
border-radius: 12px;
padding: 1.5rem;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
border-left: 4px solid #58a6ff;
}
.timeline-time {
font-weight: bold;
color: #58a6ff;
min-width: 100px;
font-size: 1.1rem;
}
.timeline-content h4 {
font-size: 1.3rem;
margin-bottom: 0.5rem;
color: #24292e;
}
.timeline-content p {
color: #586069;
}
/* Resources Section */
.resources {
padding: 4rem 0;
background: white;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
}
.resource-card {
background: #f6f8fa;
padding: 2rem;
border-radius: 12px;
text-align: center;
transition: transform 0.3s;
border: 1px solid #e1e4e8;
}
.resource-card:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.resource-card i {
font-size: 2.5rem;
color: #f85149;
margin-bottom: 1rem;
}
.resource-link {
display: inline-block;
margin-top: 1rem;
color: #58a6ff;
text-decoration: none;
font-weight: bold;
}
.resource-link:hover {
text-decoration: underline;
}
/* Registration Section */
.registration {
padding: 4rem 0;
background: linear-gradient(135deg, #24292e, #444d56);
color: white;
text-align: center;
}
.registration-form {
max-width: 500px;
margin: 2rem auto;
background: white;
padding: 2rem;
border-radius: 12px;
color: #333;
}
.form-group {
margin-bottom: 1.5rem;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
font-weight: bold;
}
.form-group input,
.form-group select,
.form-group textarea {
width: 100%;
padding: 0.8rem;
border: 2px solid #e1e4e8;
border-radius: 6px;
font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: #58a6ff;
}
/* Footer */
footer {
background: #0d1117;
color: white;
padding: 3rem 0 1rem;
text-align: center;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}
.footer-section h4 {
margin-bottom: 1rem;
color: #58a6ff;
}
.footer-section a {
color: #7d8590;
text-decoration: none;
display: block;
margin-bottom: 0.5rem;
}
.footer-section a:hover {
color: #58a6ff;
}
.social-links {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1rem;
}
.social-links a {
font-size: 1.5rem;
padding: 0.5rem;
}
/* Responsive Design */
@media (max-width: 768px) {
nav ul {
flex-direction: column;
gap: 1rem;
}
.hero h1 {
font-size: 2.5rem;
}
.info-grid {
grid-template-columns: 1fr;
}
.timeline-item {
flex-direction: column;
}
.timeline-time {
margin-bottom: 0.5rem;
}
}
/* Animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.fade-in {
animation: fadeInUp 0.6s ease-out;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<nav class="container">
<div class="logo">
<i class="fab fa-github"></i>
GitHub UG Kaduna
</div>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#schedule">Schedule</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#register">Register</a></li>
</ul>
</nav>
</header>
<!-- Hero Section -->
<section id="home" class="hero">
<div class="container">
<h1 class="fade-in">GitHub Workshop 2025</h1>
<p class="fade-in">Master Git, GitHub, and Open Source Development</p>
<p class="fade-in">GitHub User Group Kaduna • September 2025</p>
<a href="#register" class="cta-button fade-in">Register Now</a>
</div>
</section>
<!-- Workshop Info -->
<section id="about" class="workshop-info">
<div class="container">
<h2 class="section-title">Workshop Overview</h2>
<div class="info-grid">
<div class="info-card">
<i class="fas fa-calendar-alt"></i>
<h3>Date & Time</h3>
<p>September 20-21, 2025<br>9:00 AM - 5:00 PM WAT</p>
</div>
<div class="info-card">
<i class="fas fa-map-marker-alt"></i>
<h3>Location</h3>
<p>Tech Hub Kaduna<br>No. 5 Constitution Road<br>Kaduna, Nigeria</p>
</div>
<div class="info-card">
<i class="fas fa-users"></i>
<h3>Participants</h3>
<p>50 Developers<br>All Skill Levels<br>Free Registration</p>
</div>
<div class="info-card">
<i class="fas fa-laptop-code"></i>
<h3>Requirements</h3>
<p>Laptop with Git installed<br>GitHub Account<br>Code Editor (VS Code)</p>
</div>
</div>
<div style="text-align: center; max-width: 800px; margin: 0 auto;">
<h3 style="margin-bottom: 1rem; color: #24292e;">What You'll Learn</h3>
<p style="font-size: 1.1rem; line-height: 1.8; color: #586069;">
Join us for an intensive 2-day workshop where you'll master Git version control,
GitHub collaboration features, and open source development practices. Whether you're
a beginner or looking to enhance your skills, this workshop will take your
development workflow to the next level.
</p>
</div>
</div>
</section>
<!-- Schedule -->
<section id="schedule" class="schedule">
<div class="container">
<h2 class="section-title">Workshop Schedule</h2>
<div class="schedule-timeline">
<div class="timeline-item">
<div class="timeline-time">Day 1</div>
<div class="timeline-content">
<h4>Git Fundamentals & GitHub Basics</h4>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">9:00 AM</div>
<div class="timeline-content">
<h4>Registration & Welcome</h4>
<p>Coffee, networking, and workshop setup</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">9:30 AM</div>
<div class="timeline-content">
<h4>Introduction to Version Control</h4>
<p>Understanding the need for version control and Git basics</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">11:00 AM</div>
<div class="timeline-content">
<h4>Git Commands Workshop</h4>
<p>Hands-on practice with init, add, commit, push, pull, and merge</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">12:30 PM</div>
<div class="timeline-content">
<h4>Lunch Break</h4>
<p>Networking and discussions</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">1:30 PM</div>
<div class="timeline-content">
<h4>GitHub Features Deep Dive</h4>
<p>Repositories, Issues, Pull Requests, and Project Management</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">3:00 PM</div>
<div class="timeline-content">
<h4>Collaborative Development</h4>
<p>Branching strategies, code reviews, and team workflows</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">4:30 PM</div>
<div class="timeline-content">
<h4>Day 1 Wrap-up & Q&A</h4>
<p>Review of concepts and preparation for Day 2</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">Day 2</div>
<div class="timeline-content">
<h4>Advanced GitHub & Open Source</h4>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">9:00 AM</div>
<div class="timeline-content">
<h4>GitHub Actions & CI/CD</h4>
<p>Automating workflows and deployment pipelines</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">10:30 AM</div>
<div class="timeline-content">
<h4>Open Source Contribution</h4>
<p>Finding projects, making contributions, and building your profile</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">12:00 PM</div>
<div class="timeline-content">
<h4>Lunch & Networking</h4>
<p>Connect with fellow developers</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">1:00 PM</div>
<div class="timeline-content">
<h4>Project Showcase & Hands-on</h4>
<p>Work on real projects and get mentorship</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">3:30 PM</div>
<div class="timeline-content">
<h4>GitHub Portfolio Building</h4>
<p>Creating an impressive GitHub profile and showcasing work</p>
</div>
</div>
<div class="timeline-item">
<div class="timeline-time">4:30 PM</div>
<div class="timeline-content">
<h4>Closing Ceremony & Certificates</h4>
<p>Final thoughts, next steps, and certificate distribution</p>
</div>
</div>
</div>
</div>
</section>
<!-- Resources -->
<section id="resources" class="resources">
<div class="container">
<h2 class="section-title">Workshop Resources</h2>
<div class="resources-grid">
<div class="resource-card">
<i class="fab fa-git-alt"></i>
<h3>Git Documentation</h3>
<p>Official Git documentation and tutorials</p>
<a href="https://git-scm.com/doc" class="resource-link" target="_blank">
Learn More <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="resource-card">
<i class="fab fa-github"></i>
<h3>GitHub Guides</h3>
<p>Comprehensive guides for GitHub features</p>
<a href="https://guides.github.com/" class="resource-link" target="_blank">
Explore Guides <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="resource-card">
<i class="fas fa-book"></i>
<h3>Pro Git Book</h3>
<p>Free online book covering Git in depth</p>
<a href="https://git-scm.com/book" class="resource-link" target="_blank">
Read Book <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="resource-card">
<i class="fas fa-play-circle"></i>
<h3>Interactive Tutorial</h3>
<p>Learn Git with interactive exercises</p>
<a href="https://learngitbranching.js.org/" class="resource-link" target="_blank">
Start Tutorial <i class="fas fa-external-link-alt"></i>
</a>
</div>
<div class="resource-card">
<i class="fas fa-chalkboard-teacher"></i>
<h3>Workshop Materials</h3>
<p>Slides, exercises, and sample projects</p>
<a href="#" class="resource-link">
Download <i class="fas fa-download"></i>
</a>
</div>
<div class="resource-card">
<i class="fab fa-discord"></i>
<h3>Community Discord</h3>
<p>Join our developer community chat</p>
<a href="#" class="resource-link">
Join Discord <i class="fas fa-external-link-alt"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Registration -->
<section id="register" class="registration">
<div class="container">
<h2 class="section-title" style="color: white;">Register for the Workshop</h2>
<p style="font-size: 1.2rem; margin-bottom: 2rem;">
Secure your spot in this comprehensive GitHub workshop. Registration is free!
</p>
<form class="registration-form" id="registrationForm">
<div class="form-group">
<label for="fullName">Full Name</label>
<input type="text" id="fullName" name="fullName" required>
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="phone">Phone Number</label>
<input type="tel" id="phone" name="phone" required>
</div>
<div class="form-group">
<label for="github">GitHub Username</label>
<input type="text" id="github" name="github" placeholder="@username">
</div>
<div class="form-group">
<label for="experience">Programming Experience</label>
<select id="experience" name="experience" required>
<option value="">Select your level</option>
<option value="beginner">Beginner (0-1 years)</option>
<option value="intermediate">Intermediate (2-3 years)</option>
<option value="advanced">Advanced (4+ years)</option>
</select>
</div>
<div class="form-group">
<label for="interests">What interests you most? (Optional)</label>
<textarea id="interests" name="interests" rows="3"
placeholder="e.g., Open source contribution, CI/CD, Team collaboration..."></textarea>
</div>
<button type="submit" class="cta-button" style="width: 100%; margin-top: 1rem;">
Register Now
</button>
</form>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<div class="footer-section">
<h4>GitHub User Group Kaduna</h4>
<p>Building a strong developer community in Kaduna through knowledge sharing and collaboration.</p>
<div class="social-links">
<a href="#"><i class="fab fa-github"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
<a href="#"><i class="fab fa-telegram"></i></a>
</div>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<a href="#home">Home</a>
<a href="#about">About Workshop</a>
<a href="#schedule">Schedule</a>
<a href="#resources">Resources</a>
<a href="#register">Register</a>
</div>
<div class="footer-section">
<h4>Contact Info</h4>
<a href="mailto:info@githubugkaduna.org">info@githubugkaduna.org</a>
<a href="tel:+2348012345678">+234 801 234 5678</a>
<a href="#">Tech Hub Kaduna</a>
<a href="#">Constitution Road, Kaduna</a>
</div>
<div class="footer-section">
<h4>Partners & Sponsors</h4>
<a href="#">GitHub</a>
<a href="#">Tech Hub Kaduna</a>
<a href="#">Microsoft</a>
<a href="#">Local Tech Community</a>
</div>
</div>
<div style="border-top: 1px solid #444d56; padding-top: 1rem; margin-top: 2rem;">
<p>© 2025 GitHub User Group Kaduna. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
target.scrollIntoView({
behavior: 'smooth',
block: 'start'
});
}
});
});
// Form submission handling
document.getElementById('registrationForm').addEventListener('submit', function(e) {
e.preventDefault();
// Get form data
const formData = new FormData(this);
const data = Object.fromEntries(formData);
// Simple validation
if (!data.fullName || !data.email || !data.phone || !data.experience) {
alert('Please fill in all required fields.');
return;
}
// Simulate form submission
alert(`Thank you ${data.fullName}! Your registration has been submitted. You will receive a confirmation email shortly.`);
this.reset();
});
// Add animation on scroll
function addAnimationOnScroll() {
const elements = document.querySelectorAll('.info-card, .timeline-item, .resource-card');
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.style.animation = 'fadeInUp 0.6s ease-out forwards';
}
});
});
elements.forEach(el => observer.observe(el));
}
// Initialize animations when page loads
document.addEventListener('DOMContentLoaded', addAnimationOnScroll);
// Mobile menu toggle (if needed for responsive design)
function toggleMobileMenu() {
const nav = document.querySelector('nav ul');
nav.style.display = nav.style.display === 'flex' ? 'none' : 'flex';
}
</script>
</body>
</html>