-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsurance.php
More file actions
117 lines (99 loc) · 5.17 KB
/
insurance.php
File metadata and controls
117 lines (99 loc) · 5.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Al Shaheen Medical Center®</title>
<link rel="shortcut icon" href="./assets/img/favicon.png" type="image/x-icon">
<!-- Bootstrap CSS Link -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- Fontawesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css" integrity="sha512-Kc323vGBEqzTmouAECnVceyQqyqdsSiqLQISBL29aUW4U/M7pSPA/gEUZQqv1cwx4OnYxTxve5UMg5GT6L4JJg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Custom CSS File -->
<link rel="stylesheet" href="./assets/css/insurance_style.css">
</head>
<body>
<div class="bg-img-wrapper">
<img class="bg-img bg-cover" src="./assets/img/insurance_qatar.jpg" alt="Life Medical Insurance in Qatar">
</div>
<!-- !Navigation Section -->
<nav class="navbar navbar-expand-xl sticky-top">
<div class="container">
<a href="#" class="navbar-brand">
<img src="./assets/img/logo.png" alt="brand-logo" class="logo-large">
<img src="./assets/img/logo1.png" alt="brand-logo" class="logo-small">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbar" aria-controls="#navbar" aria-expanded="false" aria-label="toggle-button">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbar">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">HOME</a>
</li>
<li class="nav-item">
<a href="index.html#clinic" class="nav-link">OUR CLINIC</a>
</li>
<li class="nav-item">
<a href="index.html#services" class="nav-link">SERVICES</a>
</li>
<li class="nav-item">
<a href="index.html#aboutus" class="nav-link">ABOUT US</a>
</li>
<li class="nav-item">
<a href="index.html#testomonial" class="nav-link">TESTOMONIAL</a>
</li>
<li class="nav-item d-block d-xl-none">
<a href="index.html#contact" class="nav-link">CONTACT</a>
</li>
</ul>
<a href="index.html#contact" class="btn btn-brand d-none d-xl-block ms-3">CONTACT</a>
</div>
</div>
</nav>
<!-- !Footer Section -->
<footer id="footer" class="fixed-bottom">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-8 mx-auto">
<a href="#" class="navbar-brand">
<img src="./assets/img/logo.png" alt="brand-logo" class="logo-large">
<img src="./assets/img/logo1.png" alt="brand-logo" class="logo-small mx-auto">
</a>
<p>© 2024 Alshaheen Medical Center. All rights reserved. Committed to excellence in healthcare and patient well-being.</p>
<div class="social-links">
<a href="www.google.com"><i class="fa-brands fa-instagram"></i></a>
<a href="www.google.com"><i class="fa-brands fa-facebook-f"></i></a>
<a href="www.google.com"><i class="fa-brands fa-linkedin-in"></i></a>
</div>
</div>
</div>
</div>
</div>
<div class="footer-bottom">
<div class="container">
<p>Designed with <i class="fa-solid fa-heart"></i> by Narza Solution™</p>
</div>
</div>
</footer>
<!-- JS Code for the Page -->
<script>
// Footer Image Change Based on Time of the Day
document.addEventListener("DOMContentLoaded", function() {
const footer = document.getElementById("footer");
const hour = new Date().getHours();
// Apply 'morning' background if between 6 AM and 6 PM, else apply 'night'
if (hour >= 6 && hour < 18) {
footer.classList.add("footer-morning");
} else {
footer.classList.remove("footer-morning");
}
});
</script>
<!-- Javascrip CDN -->
<script src="./assets/js/jquery-3.7.1.min.js"></script>
<!-- Bootstrap CDN for JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>