-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
126 lines (113 loc) · 5.23 KB
/
Copy pathcontact.html
File metadata and controls
126 lines (113 loc) · 5.23 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Contact Dewi Sri Spa & Wellness. Book your appointment today.">
<title>Contact Us | Dewi Sri Spa</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<!-- Navigation -->
<nav>
<div class="nav-container">
<a href="index.html" class="logo">Dewi Sri Spa</a>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="menu.html">Services</a></li>
<li><a href="contact.html" class="active">Contact</a></li>
</ul>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</div>
</nav>
<!-- Page Header -->
<header class="page-header" style="background-image: url('hero.png');">
<h1>Visit Us</h1>
</header>
<!-- Contact Section -->
<section class="section-padding">
<div class="container">
<div class="contact-grid">
<!-- Contact Info -->
<div>
<h2 class="section-title">Get in Touch</h2>
<p style="margin-bottom: 2rem;">We recommend booking at least 24 hours in advance to secure your preferred time. We look forward to welcoming you.</p>
<div class="contact-info-item">
<h3><i class="fas fa-map-marker-alt"></i> Location</h3>
<p>Jalan Pantai Batu Bolong No. 12, Canggu<br>Bali, Indonesia 80361</p>
</div>
<div class="contact-info-item">
<h3><i class="fas fa-phone"></i> Phone / WhatsApp</h3>
<p>+62 812 3456 7890</p>
</div>
<div class="contact-info-item">
<h3><i class="fas fa-envelope"></i> Email</h3>
<p>reservations@dewisrispa.com</p>
</div>
<div class="contact-info-item">
<h3><i class="far fa-clock"></i> Opening Hours</h3>
<p>Daily: 09:00 AM - 09:00 PM</p>
</div>
</div>
<!-- Contact Form -->
<div>
<h2 class="section-title">Send a Message</h2>
<form action="#" method="POST" style="background: #fff; padding: 2rem; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="subject">Subject</label>
<input type="text" id="subject" name="subject">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit" class="btn">Send Message</button>
</form>
</div>
</div>
</div>
</section>
<!-- Google Map Placeholder -->
<section class="map-section">
<div style="background-color: #ddd; width: 100%; height: 400px; display: flex; align-items: center; justify-content: center; color: #666;">
<!-- I would embed a real Google Map iframe here -->
<p><i class="fas fa-map"></i> Google Maps Embed Placeholder</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<div class="footer-content">
<h3 class="logo" style="color: #fff;">Dewi Sri Spa</h3>
<div class="social-links">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-whatsapp"></i></a>
</div>
<div class="footer-bottom">
© 2023 Dewi Sri Spa & Wellness. All rights reserved.
</div>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>