forked from beast-codez/Project-K
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
245 lines (229 loc) · 8.09 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Health Center Connect</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/d70dca505b.js" crossorigin="anonymous"></script>
<link href="index.css" rel="stylesheet">
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<link rel="icon" href="./img/logoHC.jpeg" type="image/x-icon">
<style>
footer {
background-color: #1a252f;
color: #fff;
padding: 50px 0;
position: relative;
overflow: hidden; /* Hide the overflow for the curve effect */
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer-section {
width: 25%;
margin-bottom: 30px;
}
.footer-section h3 {
font-size: 1.2em;
margin-bottom: 20px;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section li {
margin-bottom: 10px;
}
.footer-section a {
color: #fff;
text-decoration: none;
}
.footer-section a:hover {
text-decoration: underline;
}
/* Curved design at the top */
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100px;
background-color: #ffffff;
border-radius: 0 0 50% 50%;
transform: translateY(-50%);
}
.footer-section ul li i{
padding: 4px;
margin-right: 10px;
}
.footer-section ul li:hover{
scale: 1.05;
transition: all ease-in 0.2s;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #f4f4f4;
padding: 5px 10px;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
height: 50px;
margin-right: 10px;
}
.logo h1 {
font-size: 1.5rem;
margin: 0;
color: #333;
}
.nav-links {
display: flex;
align-items: center;
}
.nav-links a {
display: flex;
align-items: center;
margin-left: 20px;
text-decoration: none;
color: #333;
font-size: 1rem;
}
.nav-links a i {
margin-right: 5px;
}
.nav-links a:hover {
transform: translateY(-5px);
transition: all 0.3s linear;
}
/* #logo{
width: 35px;
height: 35px;
margin-right: 12px;
} */
iframe{
align-self: center;
/* background-image: url(./img/doctor-bg.jpg);
background-repeat: no-repeat; */
scrollbar-width: 0%;
}
</style>
</head>
<body>
<div class="navbar">
<div class="logo">
<img id="logo"src="./img/logoHC.jpeg" alt="Health Center Logo">
<h1>Health Center Connect</h1>
</div>
<div class="nav-links">
<a href="#"><i class="fas fa-pills"></i>Available Medicines</a>
<a href="#"><i class="fas fa-tint"></i>Blood Donors List</a>
<a href="#"><i class="fas fa-video"></i>Virtual Conference</a>
<a href="#"><i class="fas fa-calendar-alt"></i>Slot Booking</a>
<a href="#"><i class="fas fa-user"></i></a>
</div>
</div>
<header class="bg-image py-5">
<div class="container h-100">
<div class="row h-100 align-items-center">
<div class="col-lg-12">
<h1 class="display-4 text-white mt-5 mb-2">Welcome to Health Connect</h1>
<p class="lead mb-5 text-white-50">Connecting college students with health resources</p>
</div>
</div>
</div>
</header>
<main class="container my-5">
<div class="row">
<div class="col-md-4 mb-4">
<div class="card user-info h-100">
<div class="card-body">
<h5 class="card-title">User Information</h5>
<p class="card-text">Age: 22</p>
<p class="card-text">Blood Group: O+</p>
<p class="card-text">Current Conditions: Allergies</p>
</div>
</div>
</div>
<div class="col-md-8 mb-4">
<div class="card previous-visits h-100">
<div class="card-body">
<h5 class="card-title">Previous Visits</h5>
<ul class="list-group list-group-flush">
<li class="list-group-item">May 15, 2023 - Regular Checkup</li>
<li class="list-group-item">March 3, 2023 - Flu Shot</li>
<li class="list-group-item">January 10, 2023 - Allergy Consultation</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col-12">
<div class="card medical-alerts">
<div class="card-body">
<h5 class="card-title">Medical Alerts</h5>
<div class="alert alert-info" role="alert">
Remember to schedule your annual checkup this month.
</div>
<div class="alert alert-warning" role="alert">
Allergy season is approaching. Consult with your doctor about preventive measures.
</div>
</div>
</div>
</div>
</div>
</main>
<iframe src="./carousel.html" width="80%" height="240px"></iframe>
<p id="whychooseus">Why Choose Us</p>
<img src="./img/whyus.png" alt="whychooseus" id="whyus">
<footer>
<div class="footer-content">
<div class="footer-section">
<h3>About Us</h3>
<p>We are here to connect you with our qualified doctors present at the health centre in our college.</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Find a Doctor</a></li>
<li><a href="#">Book an Appointment</a></li>
<li><a href="#">look for a blood group</a></li>
<li><a href="#">Career</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Contact</h3>
<ul>
<li>Health Connect</li>
<li><i class="fa-solid fa-location-dot"></i>IIITA , admin block</li>
<li><i class="fa-solid fa-phone"></i>888-2-666</li>
<li><i class="fa-solid fa-envelope"></i>[email protected]</li>
<li><i class="fa-solid fa-envelope"></i>[email protected]</li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us on</h3>
<ul>
<li><a href="#"><i class="fa-brands fa-instagram"></i>Instagram</a></li>
<li><a href="#"><i class="fa-brands fa-facebook"></i>Facebook</a></li>
<li><a href="#"><i class="fa-brands fa-linkedin"></i>LinkedIn</a></li>
</ul>
</div>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>