-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
104 lines (90 loc) · 4.3 KB
/
about.html
File metadata and controls
104 lines (90 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LabCare - About Us</title>
<link rel="icon" type="image/png" href="./images/lab image.jpg">
<link rel="stylesheet" href="index.html">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<img src="./images/lab image.jpg" width="100px" class="logo-image" alt="">
<div class="logo">LabCare</div>
<button class="hamburger" id="hamburger">☰</button>
<ul class="nav-links" id="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="tests.html">Tests</a></li>
</ul>
</nav>
</header>
<main>
<section class="about-section">
<h1>About LabCare</h1>
<p>LabCare is committed to providing high-quality diagnostic services to individuals and healthcare providers. Our advanced laboratory facilities and experienced staff ensure accurate, timely, and cost-effective medical testing solutions.</p>
<p>Founded with the vision to make healthcare diagnostics accessible to everyone, LabCare has been a trusted name in the field for years. Whether you're visiting for routine checkups or specialized tests, you can rely on our team for excellent service.</p>
<p>We continuously invest in state-of-the-art technologies and upgrade our lab infrastructure to meet the growing needs of modern healthcare. Our mission is to empower patients and support doctors through precision diagnostics and data-driven insights.</p>
<p>LabCare is proud to collaborate with clinics, hospitals, and independent physicians across the country to streamline lab testing procedures and deliver accurate results faster than ever before.</p>
<div class="highlight-section">
<div class="highlight-box">
<h3>🏥 Best in Town</h3>
<p>Recognized as the most trusted and reliable lab in the region.</p>
</div>
<div class="highlight-box">
<h3>🧪 Advanced Testing</h3>
<p>We use cutting-edge technology for accurate and fast diagnostics.</p>
</div>
<div class="highlight-box">
<h3>👨⚕️ Expert Staff</h3>
<p>Our team of certified professionals ensures top-tier quality.</p>
</div>
<div class="highlight-box">
<h3>💬 Patient Support</h3>
<p>24/7 assistance and detailed reporting for every patient.</p>
</div>
<div class="highlight-box">
<h3>🚚 Fast Turnaround</h3>
<p>Most reports delivered within 24 hours for faster decisions.</p>
</div>
<div class="highlight-box">
<h3>🌐 Nationwide Reach</h3>
<p>We serve across the country with multiple partner facilities.</p>
</div>
<div class="highlight-box">
<h3>🔒 Data Security</h3>
<p>Strict protocols for protecting patient data and confidentiality.</p>
</div>
<div class="highlight-box">
<h3>📊 Comprehensive Reports</h3>
<p>Clear, comprehensive, and easy-to-understand test reports.</p>
</div>
<div class="highlight-box">
<h3>🔧 Customized Solutions</h3>
<p>Tailored testing packages to meet individual patient needs.</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2025 LabCare. All rights reserved.</p>
<div style="display: flex; justify-content: space-between; gap:5px; align-items: center; width: 100%; padding: 0 2rem;">
<!-- Left side: Extra info -->
<div class="extra-info" style="color: white; font-size: 0.9rem; max-width: 200px;">
<h4 style="margin: 0 0 0.5rem;">Connect with us</h4>
<ul style="list-style: none; padding: 0; margin: 0;">
<li>📧 Email: contact@labcare.com</li>
<li>📞 Phone: +1 234 567 890</li>
<li>🌐 <a href="https://labcare.com" target="_blank" style="color: #fff; text-decoration: underline;">Visit Website</a></li>
</ul>
</div>
<video autoplay muted loop controls width="300">
<source src="./videos/lab-video.mp4" type="video/mp4">
<p>Video is not Supporting your browser </p>
</video>
</footer>
<script src="script.js"></script>
</body>
</html>