Home

<!DOCTYPE html>
<html lang=”en”>
<head>
<meta charset=”UTF-8″>
<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>
<title>Luxury Spa & Wellness</title>

<link href=”https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap” rel=”stylesheet”>

<style>

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:’Poppins’,sans-serif;
}

body{
background:#f8f8f8;
color:#333;
scroll-behavior:smooth;
}

header{
position:fixed;
width:100%;
background:#111;
padding:15px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;
}

.logo{
font-size:28px;
color:#d4af37;
font-weight:bold;
}

nav a{
color:#fff;
margin-left:25px;
text-decoration:none;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

.hero{
height:100vh;
background:url(“https://images.unsplash.com/photo-1544161515-4ab6ce6db874?auto=format&fit=crop&w=1600&q=80″) center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
position:relative;
}

.hero:before{
content:”;
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.55);
}

.hero-content{
position:relative;
z-index:2;
}

.hero h1{
font-size:55px;
margin-bottom:15px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 35px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:30px;
}

section{
padding:80px 8%;
}

.title{
text-align:center;
font-size:36px;
margin-bottom:40px;
color:#222;
}

.about{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
align-items:center;
}

.about img{
width:100%;
border-radius:15px;
}

.services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 10px 20px rgba(0,0,0,.08);
text-align:center;
transition:.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card h3{
margin:20px 0;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery img{
width:100%;
height:250px;
object-fit:cover;
border-radius:15px;
}

.choose{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.choose div{
background:white;
padding:30px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.testimonials{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.testimonial{
background:#fff;
padding:25px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

iframe{
width:100%;
height:350px;
border:none;
border-radius:15px;
}

footer{
background:#111;
color:#fff;
text-align:center;
padding:20px;
}

.float-btn{
position:fixed;
right:20px;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:28px;
color:#fff;
text-decoration:none;
z-index:999;
}

.whatsapp{
bottom:90px;
background:#25D366;
}

.call{
bottom:20px;
background:#d4af37;
}

@media(max-width:768px){

.about,
.contact{
grid-template-columns:1fr;
}

.hero h1{
font-size:38px;
}

nav{
display:none;
}

}

</style>

</head>
<body>

<header>

<div class=”logo”>Luxury Spa</div>

<nav>
<a href=”#about”>About</a>
<a href=”#services”>Services</a>
<a href=”#gallery”>Gallery</a>
<a href=”#contact”>Contact</a>
</nav>

</header>

<section class=”hero”>

<div class=”hero-content”>

<h1>Luxury Spa & Wellness</h1>

<p>Relax • Refresh • Rejuvenate</p>

<a href=”#contact” class=”btn”>Book Appointment</a>

</div>

</section>

<section id=”about”>

<h2 class=”title”>About Us</h2>

<div class=”about”>

<img src=”https://images.unsplash.com/photo-1519823551278-64ac92734fb1?auto=format&fit=crop&w=900&q=80″>

<div>

<h2>Experience Ultimate Relaxation</h2>

<br>

<p>
Our luxury spa offers premium wellness therapies designed to refresh your mind,
body and soul. Our experienced therapists provide world-class massage services
in a peaceful environment.
</p>

<br>

<p>
✔ Professional Therapists<br>
✔ Luxury Private Rooms<br>
✔ Premium Oils<br>
✔ Hygienic Environment
</p>

</div>

</div>

</section>

<section id=”services”>

<h2 class=”title”>Our Services</h2>

<div class=”services”>

<div class=”card”>
<h3>Swedish Massage</h3>
<p>Relaxing full body massage.</p>
</div>

<div class=”card”>
<h3>Deep Tissue Massage</h3>
<p>Relieves muscle pain and stress.</p>
</div>

<div class=”card”>
<h3>Aromatherapy</h3>
<p>Essential oil healing massage.</p>
</div>

<div class=”card”>
<h3>Couple Spa</h3>
<p>Luxury experience for couples.</p>
</div>

</div>

</section>

<section>

<h2 class=”title”>Why Choose Us</h2>

<div class=”choose”>

<div>
<h3>Certified Therapists</h3>
</div>

<div>
<h3>Luxury Rooms</h3>
</div>

<div>
<h3>100% Hygiene</h3>
</div>

<div>
<h3>Affordable Prices</h3>
</div>

</div>

</section>

<section id=”gallery”>

<h2 class=”title”>Gallery</h2>

<div class=”gallery”>

<img src=”https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=800&q=80″>

<img src=”https://images.unsplash.com/photo-1507652313519-d4e9174996dd?auto=format&fit=crop&w=800&q=80″>

<img src=”https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=800&q=80″>

<img src=”https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=800&q=80″>

</div>

</section>

<section>

<h2 class=”title”>Testimonials</h2>

<div class=”testimonials”>

<div class=”testimonial”>
★★★★★
<p>
Amazing experience. Very professional therapists.
</p>
<b>- Rahul</b>
</div>

<div class=”testimonial”>
★★★★★
<p>
Beautiful ambience and excellent service.
</p>
<b>- Priya</b>
</div>

<div class=”testimonial”>
★★★★★
<p>
Highly recommended luxury spa.
</p>
<b>- Aman</b>
</div>

</div>

</section>

<section id=”contact”>

<h2 class=”title”>Contact Us</h2>

<div class=”contact”>

<div>

<h3>Luxury Spa & Wellness</h3>

<br>

<p>📍 Your Address Here</p>

<br>

<p>📞 +91 9876543210</p>

<br>

<p>✉ info@yourspa.com</p>

<br>

<p>Open Daily: 10:00 AM – 10:00 PM</p>

<br>

<a href=”tel:+919876543210″ class=”btn”>Call Now</a>

</div>

<div>

<iframe
src=”https://maps.google.com/maps?q=Delhi&t=&z=13&ie=UTF8&iwloc=&output=embed”>
</iframe>

</div>

</div>

</section>

<footer>

© 2026 Luxury Spa & Wellness. All Rights Reserved.

</footer>

<a href=”https://wa.me/919876543210″ class=”float-btn whatsapp”>💬</a>

<a href=”tel:+919876543210″ class=”float-btn call”>📞</a>

<script>

document.querySelectorAll(‘a[href^=”#”]’).forEach(anchor=>{
anchor.addEventListener(‘click’,function(e){
e.preventDefault();
document.querySelector(this.getAttribute(‘href’)).scrollIntoView({
behavior:’smooth’
});
});
});

</script>

</body>
</html>

Scroll to Top