-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
98 lines (90 loc) · 4.42 KB
/
Contact.html
File metadata and controls
98 lines (90 loc) · 4.42 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
88
89
90
91
92
93
94
95
96
97
98
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Vipingo Holiday Resort & Villas — Contact</title>
<style>
:root{font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;color:#222}
body{margin:0;background:#f7f9fb}
header{background:#0b6e4f;color:#fff;padding:28px 20px}
main{max-width:980px;margin:28px auto;padding:20px}
.grid{display:grid;grid-template-columns:1fr 360px;gap:20px}
.card{background:#fff;border-radius:8px;padding:18px;box-shadow:0 2px 8px rgba(20,30,40,0.06)}
h1{margin:0;font-size:1.4rem}
p.lead{margin:8px 0 0;color:#e6f3ea}
.contact-list{display:flex;flex-direction:column;gap:12px;margin:12px 0}
.item{display:flex;gap:12px;align-items:center}
.icon{width:44px;height:44;border-radius:8px;background:#eef7f1;display:grid;place-items:center;font-size:18px}
a{text-decoration:none;color:#0b6e4f;font-weight:600}
.small{font-size:0.95rem;color:#555}
iframe{width:100%;height:240px;border:0;border-radius:8px}
form{display:flex;flex-direction:column;gap:10px}
input,textarea{padding:10px;border:1px solid #dde7e1;border-radius:6px;font:inherit}
button{background:#0b6e4f;color:#fff;padding:10px;border:0;border-radius:6px;cursor:pointer}
footer{max-width:980px;margin:14px auto;text-align:center;color:#666;font-size:0.9rem}
@media (max-width:860px){.grid{grid-template-columns:1fr}}
</style>
</head>
<body>
<header>
<h1>Vipingo Holiday Resort & Villas</h1>
<p class="lead">Contact information center — reservations, enquiries and location</p>
</header>
<main>
<div class="grid">
<section class="card">
<h2>Contact details</h2>
<div class="contact-list">
<div class="item">
<div class="icon">✉️</div>
<div>
<div class="small">Email</div>
<div><a href="mailto:okothden99@gmail.com">okothden99@gmail.com</a></div>
</div>
</div>
<div class="item">
<div class="icon">📞</div>
<div>
<div class="small">Telephone</div>
<div><a href="tel:+254796411804">+254796411804</a></div>
</div>
</div>
<div class="item">
<div class="icon">📍</div>
<div>
<div class="small">Location</div>
<div><a href="https://www.google.com/maps?q=Vipingo+Ridges&z=15" target="_blank" rel="noopener">View on Google Maps — Vipingo Ridges</a></div>
</div>
</div>
</div>
<h3>Quick message</h3>
<form action="#" method="post" onsubmit="alert('This is a demo form. Hook up a backend to submit.');return false;">
<input type="text" name="name" placeholder="Your name" required />
<input type="email" name="email" placeholder="Your email" required />
<textarea name="message" rows="5" placeholder="Message or enquiry" required></textarea>
<button type="submit">Send message</button>
</form>
</section>
<aside class="card">
<h2>Location map</h2>
<iframe
src="https://www.google.com/maps?q=Vipingo+Ridges&output=embed"
loading="lazy"
referrerpolicy="no-referrer-when-downgrade"
title="Vipingo Ridges map">
</iframe>
<p class="small" style="margin-top:10px">
Address (approx.): Vipingo Ridges, Kilifi County, Kenya.
</p>
</aside>
</div>
</main>
<footer>
© <span id="year"></span> Vipingo Holiday Resort & Villas — All rights reserved.
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>