-
Notifications
You must be signed in to change notification settings - Fork 223
/
radiology.html
499 lines (442 loc) · 27.4 KB
/
radiology.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ"
crossorigin="anonymous" />
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/tailwindcss@^1.0/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="blog.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/5.4.4/photoswipe.min.css"
integrity="sha512-LFWtdAXHQuwUGH9cImO9blA3a3GfQNkpF2uRlhaOpSbDevNyK1rmAjs13mtpjvWyi+flP7zYWboqY+8Mkd42xA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="icon" href="img/favicon.png" type="image/png">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<title>Swasthya Point</title>
<style>
/* General styles for contact form inputs */
.form-control {
background-color: #fff;
/* White background */
border: 1px solid #ced4da;
/* Light border */
border-radius: 0.5rem;
/* Rounded corners */
transition: border-color 0.3s;
/* Smooth border transition */
}
.form-control:focus {
outline: none;
/* Remove default outline */
box-shadow: none;
/* Remove any shadow */
border-color: #007bff;
/* Change border color on focus */
}
/* Add custom styles for buttons */
.btn {
background-color: #007bff;
/* Primary color */
border: none;
/* Remove border */
color: #fff;
/* White text */
transition: background-color 0.3s;
/* Smooth background transition */
}
.btn:hover {
background-color: #0056b3;
/* Darker shade on hover */
}
.our_radio_service{
size: 20px;
}
/* Responsive design */
@media (max-width: 768px) {
.container {
padding: 20px;
/* Adjust padding on smaller screens */
}
}
.list-group-item {
background-color: transparent;
color: inherit;
}
</style>
</head>
<body>
<!-- header section starts -->
<header>
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<a href="#" class="logo"><img src="img/swasthya-logo.png"></a>
<nav class="navbar">
<a href="index.html#home">Home</a>
<a href="index.html#about">About Us</a>
<a href="index.html#services">Services</a>
<a href="#contact">Contact</a>
<a href="blog.html">Blogs</a>
<a href="nearby.html">Nearby</a>
<a href="appointment.html"><span>Book Your Appointment</span></a>
<div class="dark-btn-navbar">
<label id="dark-change"></label>
</div>
<!--telehealth reminders and schedules--><a href="https://yourcompany.setmore.com">Schedule
Appointment</a>
<a href="https://yourcompany.setmore.com">Schedule Appointment</a>
<a href="#setmore_widget"><span>Schedule And Reminder</span></a>
<a href="user_login.html">User Login</a>
<a href="#">Doctor Login</a>
<a href="#">Admin Login</a>
</nav>
</header>
<!-- header section ends -->
<!-- home section starts -->
<section class="home" id="home">
<div class="content">
<h3>Your Health, Our Priority</h3>
<span>Personalized Care for Every Patient</span>
<p>We believe in a patient-centered approach, offering a wide range of medical services tailored to meet
your unique health needs.</p>
<a href="#" class="btn">EXPLORE</a>
</div>
<div style="height: 100vh; filter: brightness(0.7);">
<div id="carouselExampleFade" class="carousel slide carousel-fade" data-bs-ride="carousel"
style="height: 100%;">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0"
class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1"
aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2"
aria-label="Slide 3"></button>
</div>
<div class="carousel-inner" style="height: 100%;">
<div class="carousel-item active">
<img src="./img/HD-wallpaper-medical-hospital.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./img/medicine-healthcare-people-conce.png" class="d-block w-100" alt="...">
</div>
<div class="carousel-item">
<img src="./img/surgery-1822458_640.png" class="d-block w-100" alt="...">
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleFade"
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="#carouselExampleFade"
data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- home section ends-->
<!-- about section starts -->
<section class="about container-fluid py-5" id="about">
<div class="container">
<h1 class="heading text-center mb-5">
<span class="text-primary">Radiology</span>
</h1>
<div class="row">
<div class="col-md-12" data-aos="fade-left" data-aos-duration="500">
<h3 class="mb-4 fs-2">Advanced Radiology Services</h3>
<p class="mb-5 fs-5">At Swasthya Point, we offer advanced radiology services to ensure accurate and timely diagnoses for a wide range of medical conditions. Our state-of-the-art imaging technology is designed to provide clear, detailed insights into your health, enabling our medical experts to deliver the best possible care.</p>
<h4 class="our_radio_service mb-4 text-primary fs-3">Our Radiology Services</h4>
<p class="mb-4 fs-5">We offer a full spectrum of radiology services to meet the diagnostic needs of our patients:</p>
<ul class="list-group list-group-flush">
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">1. X-ray Imaging</h5>
<p class="fs-5">X-rays are a fast, safe, and effective way to examine bones and certain tissues. This is often the first imaging test for issues like fractures, joint problems, or chest concerns.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Fractures, chest infections, bone conditions.</p>
</li>
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">2. CT Scan (Computed Tomography)</h5>
<p class="fs-5">CT scans provide detailed, cross-sectional images of your body, helping doctors get a clearer view of organs, tissues, and bones. This is helpful for diagnosing complex issues.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Tumors, internal injuries, infections.</p>
</li>
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">3. MRI (Magnetic Resonance Imaging)</h5>
<p class="fs-5">MRI is a non-invasive imaging technology that uses magnets and radio waves to generate detailed images of organs and soft tissues, especially the brain, spine, and joints.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Brain disorders, spine conditions, joint problems.</p>
</li>
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">4. Ultrasound</h5>
<p class="fs-5">Ultrasound imaging is a safe, radiation-free way to view organs and tissues in real time. It’s commonly used in pregnancy but also for diagnosing issues in other organs.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Pregnancy scans, liver and kidney problems, abdominal issues.</p>
</li>
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">5. Mammography</h5>
<p class="fs-5">Mammograms use low-dose X-rays specifically to examine breast tissue. This is vital for early detection of breast cancer and other breast-related health conditions.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Breast cancer screening.</p>
</li>
<li class="list-group-item mb-4">
<h5 class="font-weight-bold fs-4">6. Nuclear Medicine</h5>
<p class="fs-5">Nuclear medicine uses small amounts of radioactive substances to diagnose and treat various conditions. This method is particularly useful for detecting diseases in the bones, heart, and thyroid.</p>
<p class="common-uses fs-6"><strong>Common Uses:</strong> Thyroid disorders, bone conditions, heart disease.</p>
</li>
</ul>
<a href="#" class="btn btn-primary mt-4 fs-5">Learn more</a>
</div>
</div>
</div>
</section>
<!-- about section ends -->
<!-- Contact Start -->
<div class="container-xxl py-5">
<div class="container">
<div class="row g-4">
<div class="col-lg-4">
<div class="h-100 bg-light rounded d-flex align-items-center p-5">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white"
style="width: 55px; height: 55px;">
<i class="fa fa-map-marker-alt text-primary"></i>
</div>
<div class="ms-4">
<p class="mb-2">Address</p>
<h5 class="mb-0">Swasthya Point Delhi, India</h5>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="h-100 bg-light rounded d-flex align-items-center p-5">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white"
style="width: 55px; height: 55px;">
<i class="fa fa-phone-alt text-primary"></i>
</div>
<div class="ms-4">
<p class="mb-2">Call Us Now</p>
<h5 class="mb-0">+91 9876543210</h5>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="h-100 bg-light rounded d-flex align-items-center p-5">
<div class="d-flex flex-shrink-0 align-items-center justify-content-center rounded-circle bg-white"
style="width: 55px; height: 55px;">
<i class="fa fa-envelope-open text-primary"></i>
</div>
<div class="ms-4">
<p class="mb-2">Mail Us Now</p>
<h5 class="mb-0"> [email protected]</h5>
</div>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.1s">
<div class="bg-light rounded p-5">
<p class="d-inline-block border rounded-pill py-1 px-4">Contact Us</p>
<h1 class="mb-4">Have Any Query? Please Contact Us!</h1>
<form>
<div class="row g-3">
<div class="col-md-6">
<div class="form">
<input type="text" class="form-control" id="name" name="name"
placeholder="Your Name" required>
<label for="name">Your Name</label>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="email" class="form-control" id="email" name="email"
placeholder="Your Email" required>
<label for="email">Your Email</label>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="tel" class="form-control" id="phone" name="phone"
placeholder="Your Phone Number" required style=" height: 50px; font-size: 15px;">
<label for="phone">Your Phone Number</label>
</div>
</div>
<div class="col-md-6">
<div class="form">
<input type="text" class="form-control" id="city" name="city"
placeholder="Your City" required>
<label for="city">Your City</label>
</div>
</div>
<div class="col-12">
<div class="form">
<input type="text" class="form-control" id="subject" name="subject"
placeholder="Subject" required>
<label for="subject">Subject</label>
</div>
</div>
<div class="col-12">
<div class="form">
<textarea class="form-control" placeholder="Leave a message here"
id="message" name="message" style="height: 100px ; font-size: 15px;"
required></textarea>
<label for="message">Message</label>
</div>
</div>
<div class="col-12">
<button class="btn btn-primary w-100 py-3" id="contact">Send
Message</button>
</div>
</div>
</form>
</div>
</div>
<div class="col-lg-6 wow fadeIn" data-wow-delay="0.5s">
<div class="h-100" style="min-height: 400px;">
<iframe class="rounded w-100 h-100"
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d224346.77249238306!2d77.06889927915427!3d28.527582456103037!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x390d1d4567aef7fd%3A0xddb0beddcd6d3c74!2sNew%20Delhi%2C%20Delhi%2C%20India!5e0!3m2!1sen!2sin!4v1603794290143!5m2!1sen!2sin"
frameborder="0" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe>
</div>
</div>
</div>
</div>
</div>
<!-- Contact End -->
</div>
<footer>
<p class="m-0" style="text-align: center; padding-top: 10px;">© 2024 Swasthya Point</p>
</footer>
</div>
</div>
</div>
</section>
<script>
var content = document.getElementsByTagName('body')[0];
var darkMode = document.getElementById('dark-change');
darkMode.addEventListener('click', function () {
darkMode.classList.toggle('active');
content.classList.toggle('night');
})
</script>
<script>
// Get the form and submit button
const form = document.querySelector('form');
const submitButton = document.querySelector('#contact');
// Add an event listener to the submit button
submitButton.addEventListener('click', function(event) {
// Prevent the default form submission behavior
event.preventDefault();
// Get the input fields
const nameInput = document.querySelector('#name');
const emailInput = document.querySelector('#email');
const phoneInput = document.querySelector('#phone');
const cityInput = document.querySelector('#city');
const subjectInput = document.querySelector('#subject');
const messageInput = document.querySelector('#message');
// Clear the input fields
nameInput.value = '';
emailInput.value = '';
phoneInput.value = '';
cityInput.value = '';
subjectInput.value = '';
messageInput.value = '';
// Display an alert
alert('Your details have been submitted!');
});
</script>
</main>
<footer class="bg-goy">
<div class="container">
<div class="row py-4 jus d-flex justify-content-center">
<div class="col-md-5 text-white ">
<h5>Medical</h5>
<p>Putting your health first. Connect with top-tier healthcare providers, receive personalized
treatment recommendations, and manage your health journey effortlessly</p>
</div>
<div class="col-md-4 text-white ">
<h5>New York</h5>
<p>709 Honey Creek Dr. <br> Delhi <br> NY 10028</p>
<p>1-888-299-2000 <br> medical.in </p>
</div>
<div class="col-md-3 text-white">
<h5>Aligarh</h5>
<p>4851 Willow Greene Drive <br> Montgomery <br> AL 36109</p>
<p>1-888-299-2000 <br> med </p>
</div>
</div>
</div>
</footer>
<script> configObj = {
"buttonD": "M8 17.333h5.333v4C13.333 22.806 14.527 24 16 24c1.473 0 2.667-1.194 2.667-2.667v-4H24L16 8l-8 9.333z", "buttonT": "translate(-1088 -172) translate(832 140) translate(32 32) translate(224)",
"shadowSize": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
"roundnessSize": "999px",
"buttonDToBottom": "32px",
"buttonDToRight": "32px",
"selectedBackgroundColor": "#13324b",
"selectedIconColor": "#b3ddff",
"buttonWidth": "56px",
"buttonHeight": "56px",
"svgWidth": "48px",
"svgHeight": "48px"
};
function createButton(obj, pageSimulator) {
const body = document.querySelector("body");
backToTopButton = document.createElement("span");
backToTopButton.classList.add("softr-back-to-top-button");
backToTopButton.id = "softr-back-to-top-button";
pageSimulator ? pageSimulator.appendChild(backToTopButton) : body.appendChild(backToTopButton);
backToTopButton.style.width = obj.buttonWidth;
backToTopButton.style.height = obj.buttonHeight;
backToTopButton.style.marginRight = obj.buttonDToRight;
backToTopButton.style.marginBottom = obj.buttonDToBottom;
backToTopButton.style.borderRadius = obj.roundnessSize;
backToTopButton.style.boxShadow = obj.shadowSize;
backToTopButton.style.color = obj.selectedBackgroundColor;
backToTopButton.style.backgroundColor = obj.selectedBackgroundColor;
pageSimulator ? backToTopButton.style.position = "absolute" : backToTopButton.style.position = "fixed";
backToTopButton.style.outline = "none";
backToTopButton.style.bottom = "0px";
backToTopButton.style.right = "0px";
backToTopButton.style.cursor = "pointer";
backToTopButton.style.textAlign = "center";
backToTopButton.style.border = "solid 2px currentColor";
backToTopButton.innerHTML = '<svg class="back-to-top-button-svg" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" > <g fill="none" fill-rule="evenodd"> <path d="M0 0H32V32H0z" transform="translate(-1028 -172) translate(832 140) translate(32 32) translate(164) matrix(1 0 0 -1 0 32)" /> <path class="back-to-top-button-img" fill-rule="nonzero" d="M11.384 13.333h9.232c.638 0 .958.68.505 1.079l-4.613 4.07c-.28.246-.736.246-1.016 0l-4.613-4.07c-.453-.399-.133-1.079.505-1.079z" transform="translate(-1028 -172) translate(832 140) translate(32 32) translate(164) matrix(1 0 0 -1 0 32)" /> </g> </svg>';
backToTopButtonSvg = document.querySelector(".back-to-top-button-svg");
backToTopButtonSvg.style.verticalAlign = "middle";
backToTopButtonSvg.style.margin = "auto";
backToTopButtonSvg.style.justifyContent = "center";
backToTopButtonSvg.style.width = obj.svgWidth;
backToTopButtonSvg.style.height = obj.svgHeight;
backToTopButton.appendChild(backToTopButtonSvg);
backToTopButtonImg = document.querySelector(".back-to-top-button-img");
backToTopButtonImg.style.fill = obj.selectedIconColor;
backToTopButtonSvg.appendChild(backToTopButtonImg);
backToTopButtonImg.setAttribute("d", obj.buttonD);
backToTopButtonImg.setAttribute("transform", obj.buttonT); if (!pageSimulator) {
backToTopButton.style.display = "none";
window.onscroll = function () {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) { backToTopButton.style.display = "block"; }
else { backToTopButton.style.display = "none"; }
};
backToTopButton.onclick = function () { document.body.scrollTop = 0; document.documentElement.scrollTop = 0; };
}
}; document.addEventListener("DOMContentLoaded", function () { createButton(configObj, null); });</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<script src="./index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/photoswipe/5.4.4/umd/photoswipe-lightbox.umd.min.js"
integrity="sha512-D16CBrIrVF48W0Ou0ca3D65JFo/HaEAjTugBXeWS/JH+1KNu54ZOtHPccxJ7PQ44rTItUT6DSI6xNL+U34SuuQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script>
const lightbox = new PhotoSwipeLightbox({
gallery: '#gallery',
children: 'a',
showHideAnimationType: 'fade',
pswpModule: () => import('https://cdnjs.cloudflare.com/ajax/libs/photoswipe/5.4.4/photoswipe.esm.min.js')
});
lightbox.init();
</script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>