-
Notifications
You must be signed in to change notification settings - Fork 259
/
test.html
349 lines (322 loc) · 15.9 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blood Test </title>
<link rel="stylesheet" href="test.css">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" type="image/x-icon" href="../favicon.png">
<!-- Google Web 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=Roboto:wght@400;500&family=Red+Rose:wght@600;700&display=swap"
rel="stylesheet">
<!-- Icon Font Stylesheet -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.0/css/all.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- Libraries Stylesheet -->
<link href="lib/animate/animate.min.css" rel="stylesheet">
<link href="lib/owlcarousel/assets/owl.carousel.min.css" rel="stylesheet">
<!-- Customized Bootstrap Stylesheet -->
<link href="bootstraptest.css" rel="stylesheet">
<!-- Template Stylesheet -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
#progressBar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 8px;
background-color: #3fbcc0;
z-index: 9999;
}
</style>
</head>
<body>
<div id="progressBar"></div>
<script>
window.onscroll = function () {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("progressBar").style.width = scrolled + "%";
};
</script>
<!-- ############# Header ############# -->
<header class="header_container nav-h">
<div class="img">
<img id="rd-logo" style="width: 81px;
height: auto;
margin: 13px;
margin-bottom: 13px;
margin-top: -17px;"
src="/assets/img/rd1.png" />
<p>Rapidoc</p>
</div>
<nav class="nav_menu">
<ul class="nav_link">
<div class="hamburger" onclick="toggleMenu()">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="Html-Files/news.html">News</a></li>
<li><a href="Html-Files/news.html">Service</a></li>
<li><a href="login.html">Sign in/Sign-up</a></li>
<li><a href="#patient-portal">patient Portal</a></li>
<li><a href="#doctors">Doctor</a></li>
<li><a href="Html-Files/contact.html">Contact us</a></li>
<a href="Html-Files/Doctor Experience.html"><button class="btn1">Find a Doctor</button></a>
</ul>
</nav>
</header>
<script>
window.onscroll = function () {
var winScroll = document.body.scrollTop || document.documentElement.scrollTop;
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
var scrolled = (winScroll / height) * 100;
document.getElementById("progressBar").style.width = scrolled + "%";
};
const hamburger = document.querySelector('.hamburger');
const nav = document.querySelector('.nav_link');
hamburger.addEventListener('click', () => {
nav.classList.toggle('active');
});
</script>
<div class="top-search">
<div class="search">
<!-- <h2>Search and Filter Options</h2>-->
<input type="text" id="search-bar">
<i class="fa-solid fa-magnifying-glass" onclick="filterTests()"></i>
<!--<button onclick="filterTests()">Search</button>-->
</div>
<div class="img-h1">
<h1 class="hero-heading" style="padding-top:100px;">
Book Your <span class="highlight">Blood Test</span>
</h1>
<img class="sec-img" src="images/rd.png" alt="Logo" />
<div class="container-fluid container-service py-5">
<div class="container pt-5">
<div class="text-center mx-auto content-wrapper">
<h1 class="display-6 mb-3">Reliable & High-Quality Laboratory Service</h1>
<p class="mb-5">Trust our state-of-the-art facilities and expert staff to deliver accurate results and exceptional care for all your testing needs.</p>
</div>
</div>
</div>
</div>
<div class="row g-4">
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-heart-pulse text-dark"></i>
</div>
<h5 class="mb-3">Pathology Testing</h4>
<p class="mb-4">Experience comprehensive analysis and precise diagnosis through our expert laboratory examinations of your bodily samples.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-lungs text-dark"></i>
</div>
<h5 class="mb-3">Microbiology Tests</h4>
<p class="mb-4">Discover how we can help identify infections and guide your treatment with our advanced microbiological investigations.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-virus text-dark"></i>
</div>
<h5 class="mb-3">Biochemistry Tests</h4>
<p class="mb-4">Gain valuable health insights with our detailed assessment of your body's biochemical processes and compounds.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.7s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-capsule-pill text-dark"></i>
</div>
<h5 class="mb-3">Histopatology Tests</h4>
<p class="mb-4">Trust our microscopic tissue examinations to provide accurate information about the manifestations of diseases.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.1s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-capsule text-dark"></i>
</div>
<h5 class="mb-3">Urine Tests</h4>
<p class="mb-4">Detect and manage various medical conditions with our thorough urine analysis services.
</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.3s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-prescription2 text-dark"></i>
</div>
<h5 class="mb-3">Blood Tests</h4>
<p class="mb-4">Ensure your overall health and receive accurate diagnoses with our vital blood examination services.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.5s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-clipboard2-pulse text-dark"></i>
</div>
<h5 class="mb-3">Fever Tests</h4>
<p class="mb-4">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur tellus augue.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
<div class="col-lg-3 col-md-6 wow fadeInUp" data-wow-delay="0.7s">
<div class="service-item">
<div class="icon-box-primary mb-4">
<i class="bi bi-file-medical text-dark"></i>
</div>
<h5 class="mb-3">Allergy Tests</h4>
<p class="mb-4">Identify and manage your allergies with our reliable and comprehensive testing services, tailored to your specific needs.</p>
<a class="btn btn-light px-3" href="">Book Now<i class="bi bi-chevron-double-right ms-1"></i></a>
</div>
</div>
</div>
</div>
</div>
<!-- ############### Footer ############### -->
<br /><br /><br /><br /><br /><br />
<footer>
<div class="footer-wrapper">
<div class="footer-columns">
<div class="other-columns">
<section>
<section>
<h4>Quick Links</h4><br>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="index.html#contact">Contact Us</a></li>
<li><a href="dex.html">Services</a></li>
<li><a href="#doctors">Doctors</a></li>
<li><a href="./faq.html">FAQ</a></li>
</ul>
</section>
<section>
<h4>Explore</h4><br>
<ul class="links">
<li><a href="Html-Files/appointment.html">Appointment</a></li>
<li><a href="portal.html">Patient Portal</a></li>
<li><a href="log/login.html">Login account</a></li>
<li><a href="helpline.html">Helplines</a></li>
<li><a href="index.html#contact">Location</a></li>
</ul>
</section>
<section>
<h4>Legal</h4><br>
<ul class="links">
<li><a href="Html-Files/customer_agreement.html">Customer Agreement</a></li>
<li><a href="Html-Files/privacy_policy_page.html">Privacy Policy</a></li>
<li><a href="Html-Files/terms_and_conditions.html">Terms and Conditions</a></li>
<li><a href="#">GDPR</a></li>
</ul>
</section>
<section class="footer-col">
<h4>RAPIDOC Newsletter</h4>
<br />
<p>
Subscribe to our newsletter for a weekly dose of news, updates,
helpful tips, and exclusive offers.
</p>
<form action="#" class="subscribe-form">
<input type="email" placeholder="Your email" required />
<button type="submit" style="color: black;">SUBSCRIBE</button>
</form>
</section>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="footer-bottom-wrapper">
<small>© <span id="year"></span><span> RapiDoc</span> | All Rights
Reserved Made with ❤️ by RapiDoc</small>
<style>
.social-wrapper a div i {
color: #afb6c7;
}
.social-wrapper a div i:hover {
color: #fff;
}
</style>
<div class="social-wrapper">
<div class="social-links">
<div style="margin-left: 100px; font-family: sans-serif">
<i>Follow Us : </i>
</div>
<a href="https://www.facebook.com/" target="_blank">
<div><i class="fa-brands fa-facebook-f"></i></div>
</a>
<!-- <a href="https://www.twitter.com" target="_blank"><div><i class="fa-brands fa-twitter"></i></div></a> -->
<a href="https://www.twitter.com">
<div>
<img src="twitter.png" style="width: 16px; height: 15px" />
</div>
</a>
<a href="https://www.linkedin.com" target="_blank">
<div><i class="fa-brands fa-linkedin"></i></div>
</a>
<a href="#" target="_blank">
<div><i class="fa-brands fa-instagram"></i></div>
</a>
<a href="https://github.com/Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-" target="_blank">
<div><i class="fa-brands fa-github"></i></div>
</a>
<a href="+91 1234567890" title="+91 1234567890" target="_blank">
<div><i class="fa-solid fa-phone"></i></div>
</a>
<a href="[email protected]" target="_blank">
<div><i class="fa-solid fa-envelope"></i></div>
</a>
</div>
</div>
</div>
</div>
</footer>
<script>
//// JavaScript working of scroll button when scrolling down
var backToTopBtn = document.getElementById("back-to-top");
if (backToTopBtn) {
backToTopBtn.addEventListener("click", function () {
document.body.scrollTop = 0; // For Safari
document.documentElement.scrollTop = 0; // For Chrome, Firefox, edge
});
}
// JavaScript to show scroll button when scrolling down
window.addEventListener("scroll", function () {
var scrollBtn = document.getElementById("back-to-top");
if (scrollBtn) {
if (
document.body.scrollTop > 20 ||
document.documentElement.scrollTop > 20
) {
scrollBtn.style.display = "block";
} else {
scrollBtn.style.display = "none";
}
}
});
</script>
<script src="tests.js"></script>
</body>
</html>