-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtraining-hub.html
More file actions
54 lines (49 loc) · 1.69 KB
/
training-hub.html
File metadata and controls
54 lines (49 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Training Hub - NamYouth Connect</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="home-finder.html">Home Finder</a></li>
<li><a href="training-hub.html">Training Hub</a></li>
<li><a href="mentorship-chat.html">Mentorship Chat</a></li>
<li><a href="funding-access.html">Funding Access</a></li>
</ul>
</nav>
<header class="hero">
<div class="hero-content">
<img src="img3.png" alt="Training Hub" class="hero-logo" />
<h1>Training Hub</h1>
<p>Enhance your skills with our curated workshops and training programs.</p>
</div>
</header>
<section class="opportunities animate">
<h2>Available Trainings</h2>
<div class="cards">
<div class="card">
<h3>Web Development Bootcamp</h3>
<p>Learn HTML, CSS, and JavaScript in 6 weeks.</p>
</div>
<div class="card">
<h3>Entrepreneurship Workshop</h3>
<p>Master business skills and start your own venture.</p>
</div>
<div class="card">
<h3>Cybersecurity Fundamentals</h3>
<p>Understand the basics of information security.</p>
</div>
</div>
</section>
<footer>
<p>Designed by Absalom Willem and Stephen Nangolo | © 2025 NamYouth Connect</p>
</footer>
<script src="script.js"></script>
</body>
</html>