-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
224 lines (199 loc) · 9.75 KB
/
index.html
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<!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="Ayurvedic Spa and Massage">
<meta name="keywords" content="Ayurvedic, spa, massage, health, therapy, relaxation">
<meta name="author" content="Ajit Garg">
<meta property="og:title" content="AyurWellnessSpa">
<meta property="og:description" content="Ayurvedic Spa and Massage">
<meta property="og:image" content="http://example.com/image.jpg">
<!--<meta property="og:url" content="http://example.com">-->
<title>AyurWellness Spa</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<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=Merriweather:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
<style>
.merriweather-light {
font-family: "Merriweather", serif;
font-weight: 300;
font-style: normal;
}
.merriweather-light-italic {
font-family: "Merriweather", serif;
font-weight: 300;
font-style: italic;
}
.merriweather-regular {
font-family: "Merriweather", serif;
font-weight: 400;
font-style: normal;
}
.merriweather-regular-italic {
font-family: "Merriweather", serif;
font-weight: 400;
font-style: italic;
}
.merriweather-bold {
font-family: "Merriweather", serif;
font-weight: 700;
font-style: normal;
}
.merriweather-bold-italic {
font-family: "Merriweather", serif;
font-weight: 700;
font-style: italic;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg header sticky-top">
<div class="container-fluid me-2">
<a class="navbar-brand" href="#home">
<img src="./images/ayurwellness-logo.png" alt="ayurwellness-logo" width="40px" height="32px">
<span class="merriweather-bold ms-1">AyurWellnessSpa</span>
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-center" id="navbarSupportedContent">
<ul class="navbar-nav mx-auto">
<li class="nav-item me-3">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item me-3">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item me-3">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item me-3">
<a class="nav-link" href="#contact">Contact</a>
</li>
<li class="nav-item me-3">
<a class="nav-link" href="#faqs">FAQs</a>
</li>
</ul>
<button class="btn btn-outline-primary ms-2" type="button">Book Now</button>
</div>
</div>
</nav>
<!-- Home -->
<section id="home">
<div class="container-fluid">
<div class="align-items-center">
<img src="./images/AyurWellness-hero.png" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="100%" height="100%" loading="lazy">
</div>
</div>
</section>
<!-- Services -->
<section id="services" class="pt-4">
<h1 class="title text-center merriweather-bold my-4">Our Services</h1>
<div class="container-fluid carousel-container mb-4">
<div id="carouselExampleCaptions" class="carousel slide">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="2" aria-label="Slide 3"></button>
<button type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide-to="3" aria-label="Slide 4"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://ayurwellnessspa.in/wp-content/uploads/2023/08/eyethereapy.jpg" class="d-block w-100 carousel-image" alt="eye therapy image">
<div class="carousel-caption">
<h4>Eye Therapy</h4>
<p>
Each eyelid has about twenty vertical oil glands with openings near the eyelash line.
Additionally, tear glands release 'crying' tears to compensate for dryness, often leading to watery eyes.
Thus, watery eyes can result from dry eye.
</p>
</div>
</div>
<div class="carousel-item">
<img src="https://ayurwellnessspa.in/wp-content/uploads/2023/08/hactick-day-massage.webp" class="d-block w-100 carousel-image" alt="spa image">
<div class="carousel-caption">
<h5>Hectic Day Massage</h5>
<p>
Hectic Massage Spa Therapy rejuvenates your skin and eases chronic muscle ache and back pain.
Ideal for relieving leg pain from long walks or headaches from work stress.
It provides a refreshing and revitalizing experience.
</p>
</div>
</div>
<div class="carousel-item">
<img src="https://ayurwellnessspa.in/wp-content/uploads/2023/08/body_spa-1024x576.webp" class="d-block w-100 carousel-image" alt="body massage image">
<div class="carousel-caption">
<h5>Body Spa</h5>
<p>
Body Massage Spa Therapy rejuvenates your skin and eases chronic muscle ache and back pain.
Ideal for relieving leg pain from long walks or headaches from work stress.
Experience complete relaxation and revitalization.
</p>
</div>
</div>
<div class="carousel-item">
<img src="https://ayurwellnessspa.in/wp-content/uploads/2023/08/dryneck.jpg" class="d-block w-100 carousel-image" alt="dry therapy image">
<div class="carousel-caption">
<h5>Dry Therapy with stretching</h5>
<p>
Dry therapy massage lowers stress, relieves muscular tension, and boosts energy.
Thai massage, performed fully clothed on a padded mat, is also known as the 'lazy person’s yoga.'
Experience the numerous health benefits it offers.
</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleCaptions" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="my-4">
<div class="container-fluid">
<h1 class="title text-center merriweather-bold">About Us</h1>
<div class="row mt-4">
<div class="col-xl-4 col-lg-4 col-md-6 col-sm-12 mb-4 mb-lg-0">
<img class="img-fluid w-100" src="https://ayurwellnessspa.in/wp-content/uploads/2023/08/home-massage-spain.jpg" alt="massage at home image" style="object-fit: cover; height: 100%;">
</div>
<div class="col-xl-8 col-lg-8 col-md-6 col-sm-12">
<h2 class="featurette-heading fw-normal lh-1 mb-3 merriweather-regular">In-House Massage and Spa</h2>
<p class="lead merriweather-light">
At AyurWellnessSpa, we believe everyone deserves professional massage therapy,
regardless of their ability to visit a spa. Our in-home services bring the luxury
and benefits of a spa experience directly to you, ensuring accessibility for all.
</p>
<p class="lead merriweather-light">
Our specialized sessions cater to individuals with unique needs, including the elderly,
those with mobility issues, anyone recovering from surgery or injury, and busy professionals
who find it challenging to take out time for spa visits. By providing treatments in the comfort of your home,
we offer a convenient and relaxing experience that promotes healing and well-being.
</p>
<p class="lead merriweather-light">
Whether you're looking to relieve stress, manage pain, or simply enjoy a moment of tranquility,
our skilled therapists deliver personalized treatments to rejuvenate both body and mind.
Discover the benefits of in-home massage therapy with AyurWellnessSpa,
and let us bring the therapeutic touch of our spa to your doorstep.
</p>
</div>
</div>
</div>
</section>
<!-- Pricing -->
<section id="pricing">
</section>
<!-- Footer -->
<section id="footer" class="gradient-background">
</section>
</body>
</html>