-
Notifications
You must be signed in to change notification settings - Fork 2
/
Aboutus.html
220 lines (200 loc) · 5.97 KB
/
Aboutus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="aboutus.css" />
<script src="https://kit.fontawesome.com/1165876da6.js" crossorigin="anonymous"></script>
<title>Medlink services</title>
</head>
<body>
<nav>
<!-- this div for heart animation -->
<div class="main_header">
<div class="center-div"></div>
<div class="nav__logo">MedLink Services</div>
</div>
<ul class="nav__links">
<li class="link"><a href="hospitalpage.html">Home </a></li>
<li class="link"><a href="locationForm.html">Beds availability</a></li>
<li class="link"><a href="appoint.html">Book Appointment </a></li>
<li class="link"><a href="Aboutus.html">About Us </a></li>
<li class="link"><a href="contactus.html">Contact Information</a></li>
</ul>
<button style="background-color:#046585;" class="btn1"><a style="color: white;" href="login.html">Login / SignUp</a></button>
</nav>
<div class="container">
<div class="heading">
<h1>ABOUT US</h1>
<p>The project aims to create a user-friendly app and
website tailored for hospital usage.
The platform will offer a user interface where the
general public can access real-time data regarding bed
availability across various hospital facilities.
In addition, the platform will display a comprehensive
directory of attending doctors and available medical
amenities for each hospital</p>
</div>
<div class="container flex">
<div class="about-image">
<img src="hospitalimg/aboutus.jpg" alt="xyz">
</div>
<div class="about-content">
<h2>What we Provide To General Public</h2>
<div class="about-wrapper">
<div class="left">
<ul>
<li>Availability of Bed</li>
<li>Transport Facility</li>
<li>Online Counsellor </li>
</ul>
</div>
<div class="right">
<ul>
<li>Online Appointment Booking</li>
<li>Instant Medicine Delivery</li>
<li>Check Ups At Home</li>
</ul>
</div>
</div>
<a href="" class="read-more">Read More</a>
</div>
</div>
</body>
<footer>
<div class="footer-container">
<div class="footer-content">
<h3>Contact Us</h3>
<p>FAQs</p>
<p>Post a query</p>
<p>Give Your Feedback</p>
<p>Phone:+91 8323676932</p>
</div>
<div class="footer-content">
<h3>Quick Links</h3>
<ul class="list">
<li><a href="">Home</a></li>
<li><a href="">About Us</a></li>
<li><a href="">Services</a></li>
<li><a href="">Consult online</a></li>
<li><a href="">Book Appointment</a></li>
</ul>
</div>
<div class="footer-content">
<h3>Follow Us</h3>
<ul class="social-icons">
<li><a href=""><i class="fab fa-facebook"></i></a></li>
<li><a href=""><i class="fab fa-twitter"></i></a></li>
<li><a href=""><i class="fab fa-instagram"></i></a></li>
<li><a href=""><i class="fab fa-linkedin"></i></a></li>
</ul>
</div>
</div>
<div class="bottom-bar">
<p style="color: aliceblue;">© 2023 Medlink Services . All rights reserved</p>
</div>
</footer>
<style>
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
/* color: white; */
}
footer{
position: relative;
top: 100px;
left: -190px;
width: 100vw;
margin: 0px;
padding: 0px;
color: white;
background: #046585;
padding-top: 50px;
}
footer a{
color: white;
}
.footer-container{
width: 1140px;
margin: auto;
display: flex;
justify-content: center;
}
.footer-content{
width: 33.3%;
}
h3{
font-size: 28px;
margin-bottom: 15px;
text-align: center;
}
.footer-content p{
width:190px;
margin: auto;
padding: 7px;
}
.footer-content ul{
text-align: center;
}
.list{
padding: 0;
}
.list li{
width: auto;
text-align: center;
list-style-type:none;
padding: 7px;
position: relative;
}
.list li::before{
content: '';
position: absolute;
transform: translate(-50%,-50%);
left: 50%;
top: 100%;
width: 0;
height: 2px;
background:red;
transition-duration: .5s;
}
.list li:hover::before{
width: 70px;
}
.social-icons{
text-align: center;
padding: 0;
}
.social-icons li{
display: inline-block;
text-align: center;
padding: 5px;
}
.social-icons i{
color: white;
font-size: 25px;
}
a{
text-decoration: none;
}
a:hover{
color: red;
}
.social-icons i:hover{
color: red;
}
.bottom-bar{
background: #27859f;
text-align: center;
padding: 10px 0;
margin-top: 50px;
}
.bottom-bar p{
color: #343434;
margin: 0;
font-size: 16px;
padding: 7px;
}
</style>
</html>