-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
108 lines (105 loc) · 5.48 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="About Shyaka Chaste - Web Developer, Event Organizer, Entrepreneur, and Non-Profit Advocate.">
<title>About Me - Shyaka Chaste</title>
<link rel="shortcut icon" href="images/mylogo.png" type="image/x-icon">
<link rel="stylesheet" href="styles/styles.css">
<link rel="stylesheet" href="styles/footer.css">
<link rel="stylesheet" href="styles/about.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav class="navbar">
<div class="navbar-brand">
<a href="index.html"><img src="images/mylogo.png" alt="Shyaka Chaste Logo" class="logo"></a>
</div>
<div class="navbar-toggle" id="mobile-menu">
<i class="fas fa-bars open-icon"></i>
<i class="fas fa-times close-icon"></i>
</div>
<ul class="navbar-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="mywork.html">My Work</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</nav>
</header>
<section class="about-me">
<div class="container">
<div class="profile">
<img src="images/chaste.jpg" alt="Shyaka Chaste" class="profile-img">
<h1>Shyaka Chaste</h1>
<p>Web Developer, Event Organizer, Entrepreneur, and Non-Profit Advocate</p>
<div class="social-icons">
<a href="https://www.linkedin.com/in/shyakachaste" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/shyakachaste" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://x.com/ChasteShyaka" target="_blank"><i class="fab fa-x-twitter"></i></a>
<a href="https://www.instagram.com/iamchaste_" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="bio">
<h2>About Me</h2>
<p>Hi, I’m Shyaka Chaste, a student at Lycée de Kigali. I like developing websites and web apps and organizing events.</p>
<p>I’m also the founder of Youth Code Camp, a community of young programmers which is a part of Hack Club , where I organize hackathons and workshops, such as HackNoel, Hack With Me, and more.</p>
</div>
<div class="skills">
<h2>Skills</h2>
<ul class="skill-list">
<li><i class="fas fa-code"></i> HTML, CSS, JavaScript</li>
<li><i class="fas fa-code"></i> React, Python , C++ , GDScript</li>
<li><i class="fa-solid fa-database"></i>MySQL</li>
<li><i class="fa-brands fa-linux"></i>Ethical Hacking</li>
<li><i class="fas fa-paint-brush"></i> UI/UX Design</li>
<li><i class="fas fa-cogs"></i> Project Management</li>
<li><i class="fa-solid fa-calendar-days"></i> Event Planning & Coordination</li>
</ul>
</div>
<div class="fun-facts">
<h2>Fun Facts</h2>
<ul>
<li><i class="fas fa-microphone"></i> I love singing.</li>
<li><i class="fas fa-gamepad"></i> I love playing Valorant.</li>
<li><i class="fas fa-basketball-ball"></i> I play basketball (Hooper).</li>
<li><i class="fas fa-paint-brush"></i> I enjoy drawing.</li>
</ul>
</div>
<div class="gallery">
<h2>Gallery</h2>
<div class="gallery-container">
<img src="images/gallery/chastehacknoel.jpg" alt="Gallery Image 1" class="gallery-item">
<img src="images/chaste.jpg" alt="Gallery Image 2" class="gallery-item">
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="footer-content">
<div class="footer-social">
<div class="social-icons">
<a href="https://www.linkedin.com/in/shyakachaste" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="https://github.com/shyakachaste" target="_blank"><i class="fab fa-github"></i></a>
<a href="https://x.com/ChasteShyaka" target="_blank"><i class="fab fa-x-twitter"></i></a>
<a href="https://www.instagram.com/iamchaste_" target="_blank"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 Shyaka Chaste. All rights reserved.</p>
</div>
</div>
</div>
</footer>
<div id="fullscreen-overlay" class="fullscreen-overlay">
<span class="close">×</span>
<img class="fullscreen-img" id="fullscreen-img" alt="Full Screen Image">
</div>
<script src="scripts/scripts.js"></script>
<script src="https://kit.fontawesome.com/db3392cfd6.js" crossorigin="anonymous"></script>
</body>
</html>