-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome-finder.html
More file actions
54 lines (49 loc) · 1.68 KB
/
home-finder.html
File metadata and controls
54 lines (49 loc) · 1.68 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>Home Finder - 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="img2.png" alt="Windhoek Studio" class="hero-logo" />
<h1>Find Affordable Housing</h1>
<p>Search for safe and affordable homes across Namibia.</p>
</div>
</header>
<section class="finder animate">
<h2>Available Homes</h2>
<div class="cards">
<div class="card">
<h3>Windhoek Studio</h3>
<p>Affordable studio apartment in Windhoek. Price: N$4,500/month</p>
</div>
<div class="card">
<h3>Oshakati Family Home</h3>
<p>3-bedroom house suitable for families. Price: N$8,000/month</p>
</div>
<div class="card">
<h3>Swakopmund Flat</h3>
<p>2-bedroom flat near the beach. Price: N$6,500/month</p>
</div>
</div>
</section>
<footer>
<p>Designed by Absalom Willem and Stephen Nangolo | © 2025 JopPlug Namibia</p>
</footer>
<script src="script.js"></script>
</body>
</html>