-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmentorship-chat.html
More file actions
48 lines (41 loc) · 1.5 KB
/
mentorship-chat.html
File metadata and controls
48 lines (41 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mentorship Chat - 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="img4.png" alt="Mentorship Chat" class="hero-logo" />
<h1>Mentorship Chat</h1>
<p>Connect with mentors and get guidance for your career and studies.</p>
</div>
</header>
<section class="contact animate">
<h2>Start a Conversation</h2>
<form>
<input type="text" placeholder="Your Name" required />
<input type="email" placeholder="Your Email" required />
<textarea placeholder="Write your message here..." required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>Designed by Absalom Willem and Stephen Nangolo | © 2025 JopPlug Namibia</p>
</footer>
<script src="script.js"></script>
</body>
</html>