-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequests.html
More file actions
87 lines (73 loc) · 3.32 KB
/
Copy pathrequests.html
File metadata and controls
87 lines (73 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Requests - BuyRentRwanda</title>
<link rel="stylesheet" href="style.css?v=2">
<link rel="icon" href="images/Buy (2).png" type="image/png">
<script src="https://kit.fontawesome.com/b640aafbb1.js" crossorigin="anonymous"></script>
<meta name="description" content="Find or list homes for sale and rent in Rwanda. Search houses, apartments, short stays, and more on RwandaProperties.">
<meta name="keywords" content="Rwanda real estate, houses for rent Rwanda, Kigali apartments, properties for sale Rwanda">
<meta name="author" content="RwandaProperties">
</head>
<body>
<div class="header-bar">
<div class="header-section logo-side">
<a href="index.html">
<img src="images/Buy (2).png" alt="Logo" class="header-logo">
</a>
</div>
<div class="header-section title-side">
<div class="header-container">
<i class="fa-solid fa-house"></i>
<h1>BuyRentRwanda</h1>
</div>
</div>
<div class="header-section spacer-side"></div>
</div>
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="forrent.html">Just Renting</a></li>
<li><a href="shortstay.html">Quick Stay</a></li>
<li><a href="forsale.html">Buy a Home</a></li>
<li><a href="advertisers.html">Post a Listing</a></li>
<li><a href="requests.html">Need a place?</a></li>
<li><a href="talk-to-us.html">Talk to us</a></li>
</ul>
</nav>
<main style="text-align: center; padding: 60px 20px;">
<h2>Looking for a Specific Property?</h2>
<p>Let us help you find it! Submit your property request below, and we'll connect you with suitable listings.</p>
<form style="max-width: 500px; margin: 30px auto; display: flex; flex-direction: column; gap: 15px;">
<input type="text" placeholder="Your Name" required />
<input type="email" placeholder="Your Email" required />
<input type="text" placeholder="Phone Number" />
<textarea rows="4" placeholder="Describe what you're looking for..." required></textarea>
<button type="submit" class="contact-btn">Send Request</button>
</form>
<p style="font-size: 0.9rem;">Or email us directly at <strong>contact.rwandaproperties@gmail.com</strong></p>
</main>
<script>
const currentPage = location.pathname.split("/").pop();
document.querySelectorAll(".navbar a").forEach(link => {
if (link.getAttribute("href") === currentPage) {
link.classList.add("active");
}
});
</script>
<footer class="site-footer">
<div class="footer-content">
<p>© 2025 BuyRentRwanda. All rights reserved.</p>
<p>📍 Kigali, Rwanda | 📞 +44 7379 530173 | ✉️ contact@contact.rwandaproperties@gmail.com</p>
<div class="footer-links">
<a href="index.html">Home</a> |
<a href="forrent.html">For Rent</a> |
<a href="shortstay.html">Short Stay</a> |
<a href="contactus.html">Contact Us</a>
</div>
</div>
</footer>
</body>
</html>