forked from GMurira/goodfootproperties
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
73 lines (68 loc) · 2.08 KB
/
contact.html
File metadata and controls
73 lines (68 loc) · 2.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Contact Us - Good Foot Properties</title>
<link rel="stylesheet" href="style.css" />
<style>
.map-section {
width: 100vw;
margin: 0;
padding: 0;
}
.map-section iframe {
display: block;
width: 100%;
height: 450px;
border: none;
}
</style>
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<h1>🏠 Good Foot Properties</h1>
<nav>
<a href="index.html#home">Home</a>
<div class="dropdown">
<button class="dropbtn">Properties</button>
<div class="dropdown-content">
<a href="index.html#properties">Land</a>
<a href="index.html#cars">Cars</a>
<a href="index.html#apartments">Apartments</a>
</div>
</div>
<a href="index.html#services">Services</a>
<a href="index.html#about">About</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<!-- Contact Form Section -->
<section id="contact" style="padding-top: 6rem;">
<h2>Contact Us</h2>
<form id="contactForm">
<input type="text" name="name" placeholder="Your Name" required />
<input type="tel" name="phone" placeholder="Phone Number" required />
<input type="email" name="email" placeholder="Your Email" required />
<button type="submit">Send Message</button>
</form>
</section>
<!-- Google Map Section -->
<section class="map-section">
<iframe
src="https://www.google.com/maps/embed?pb=!1m14!1m12!1m3!1d2107.7048147164737!2d36.71263361669085!3d-1.2799374584231062!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!5e0!3m2!1sen!2ske!4v1752228354213!5m2!1sen!2ske"
allowfullscreen=""
loading="lazy"
referrerpolicy="no-referrer-when-downgrade">
</iframe>
</section>
<!-- Footer -->
<footer>
<p>© 2025 Good Foot Properties Limited. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>