-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (109 loc) · 4.59 KB
/
Copy pathindex.html
File metadata and controls
134 lines (109 loc) · 4.59 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Asiri Hospital Colombo</title>
<link rel="icon" type="image/png" href="images/asiri_logo.png">
<script src="https://kit.fontawesome.com/c1df782baf.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn-uicons.flaticon.com/2.6.0/uicons-regular-straight/css/uicons-regular-straight.css">
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="services.css" />
</head>
<body>
<header>
<div class="logo">
<img src="images/asiri_logo.png" alt="Asiri Hospital Logo">
</div>
<nav class="navbar">
<a href="index.html" class="active">Home</a>
<a href="about.html">About</a>
<a href="services.html">Services</a>
<a href="facilities.html">Facilities</a>
<a href="contact.html">Contact</a>
</nav>
<div class="right-icons">
<i id="menu-bars" class="fas fa-bars"></i>
<div class="btn book-btn">Schedule Consultation</div>
</div>
</header>
<!-- Home Section -->
<section class="main-home">
<div class="home">
<div class="home-left-content">
<span>Welcome to Asiri Hospital, Colombo</span>
<h2>Dedicated to Your Health,<br>Committed to Your Care</h2>
<p class="lorem">
Asiri Hospital stands as one of Sri Lanka’s leading private healthcare providers.
Combining modern medical innovation with the expertise of our skilled professionals,
we ensure every patient receives trusted, compassionate, and personalized care.
</p>
<div class="home-btn">
<a href="#"><i class="fas fa-info-circle"></i> Learn More</a>
<a href="#" class="homebtnsec"><i class="fas fa-calendar-check"></i> Book Appointment</a>
</div>
</div>
<div class="home-right-content">
<img src="images/home-page-img1.jpg" alt="ward image" />
</div>
</div>
</section>
<!-- quick features -->
<section class="technology">
<div class="main-technology">
<div class="inner-technology">
<i class="fas fa-ambulance"></i>
<h2>24/7 Emergency Support</h2>
<p>Immediate medical assistance available at any hour, equipped with advanced life-saving facilities.</p>
</div>
<div class="inner-technology">
<i class="fas fa-heartbeat"></i>
<h2>Comprehensive Health Checkups</h2>
<p>Explore a range of preventive health packages designed to suit your lifestyle and wellness goals.</p>
</div>
<div class="inner-technology">
<i class="fas fa-user-md"></i>
<h2>Specialist Consultations</h2>
<p>Access a diverse team of experienced doctors and consultants across every major medical field.</p>
</div>
</div>
</section>
<!-- About section -->
<section class="main-about">
<img class="blur-bg" src="images/bg3.jpg" alt="Hospital background">
<div class="inner-main-about">
<div class="about-inner-content-left">
<img src="images/doc-equipments.jpg" alt="Hospital Interior">
</div>
<div class="about-inner-content">
<div class="about-right-content">
<h2>Committed to Exceptional Healthcare</h2>
<p class="aboutsec-content">
Located at the heart of Colombo, Asiri Hospital provides top-tier medical services with cutting-edge technology and an expert team of healthcare professionals.
We offer comprehensive diagnostic services, state-of-the-art surgical facilities, and a patient-centered environment designed for safety and comfort.
Whether it’s a routine checkup or a specialized treatment, we’re dedicated to supporting your well-being every step of the way.
</p>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<div class="footer-box">
<h2>Follow Us</h2>
<div class="social-links">
<a href="#"><i class="fab fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-linkedin"></i></a>
</div>
</div>
</div>
<div class="credit">
© 2025 | Department of IT, Asiri Hospitals | All Rights Reserved
</div>
</footer>
<script src="script.js"></script>
</body>
</html>