-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (99 loc) · 3.37 KB
/
index.html
File metadata and controls
119 lines (99 loc) · 3.37 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LabCare - Home</title>
<link rel="shortcut icon" href="./images/lab image.jpg" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav class="navbar">
<div class="nav-content">
<img src="./images/lab image.jpg" width="100px" class="logo-image" alt="">
<div class="logo">LabCare</div>
<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>
<div class="nav-actions">
<a href="./login.html" class="btn" >Login</a>
<a href="register.html" class="btn">Register</a>
</div>
<button id="hamburger" class="hamburger" aria-label="Toggle menu">
☰ <!-- hamburger icon -->
</button>
</div>
</nav>
</header>
<main>
<section class="hero">
<h1>Welcome to LabCare</h1>
<p>Your trusted partner in diagnostic testing and healthcare services.</p>
<a href="tests.html" class="btn">View All Tests</a>
</section>
<section class="features">
<h2>Why Choose LabCare?</h2>
<div class="features-grid">
<div class="feature-card">
<img src="./images/labaccurate-result.jpg" alt="Accurate Results">
<h3>Accurate Results</h3>
<p>State-of-the-art technology ensures the most reliable diagnostic outcomes.</p>
</div>
<div class="feature-card">
<img src="./images/qualified staff- lab.jpg" alt="Qualified Staff">
<h3>Qualified Staff</h3>
<p>Experienced technicians and doctors committed to your health.</p>
</div>
<div class="feature-card">
<img src="./images/affordable-lab.jpg" alt="Affordable Pricing">
<h3>Affordable Pricing</h3>
<p>Affordable services with no compromise on quality or accuracy.</p>
</div>
<div class="feature-card">
<img src="./images/fast lab.jpg" alt="Fast Turnaround">
<h3>Fast Turnaround</h3>
<p>"Receive your lab reports within 24–48 hours so you can make timely health decisions."</p>
</div>
</div>
</section>
<section class="cta">
<h2>Book Your Lab Test Today</h2>
<p>Take control of your health with our comprehensive lab services.</p>
<a href="tests.html" class="btn">Explore Tests</a>
</section>
</main>
<footer>
<div class="footer-section">
<h4>LabCare</h4>
<ul>
<li>Accurate Tests</li>
<li>Qualified Staff</li>
<li>Quick Reports</li>
</ul>
</div>
<div class="footer-section">
<h4>Contact</h4>
<ul>
<li>Email: contact@labcare.com</li>
<li>Phone: +1 234 567 890</li>
<li><a href="https://labcare.com" target="_blank" style="color: white; text-decoration: underline;">Visit Website</a></li>
</ul>
</div>
<div class="footer-section">
<h4>Follow Us</h4>
<ul>
<li>Facebook</li>
<li>Twitter</li>
<li>LinkedIn</li>
</ul>
</div>
<div class="footer-bottom">
© 2025 LabCare. All rights reserved.
</div>
</footer>
<script src="./script.js"></script>
</body>
</html>