-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (42 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Medical Centre</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<center>
<div class="container">
<div class="header">
<img src="logo_processed.png" alt="Medical Centre Logo">
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class="sidebar">
<ul>
<li><a href="contact.html">About Us</a></li>
<li><a href="appointments.html">Appointments</a></li>
<li><a href="https://maps.app.goo.gl/YC5mMXqLNZASczuU6">Location</a></li>
</ul>
</div>
<div class="image-section">
<img style="height: 200px; width: 200px;" src="clinic_view_2.png" alt="Welcome to Our Medical Centre">
<img style="height: 150px; width: 170px;" src="team_of_professionals.png" alt="Team of Professionals">
</div>
<div class="paragraph-section">
<h2>Welcome to Our Medical Centre</h2>
<p>At our Medical Centre, we claim to provide a comprehensive range of services designed to cater to your health needs—albeit with a side of managed expectations.</p>
<p>From our General Practitioners (GPs), who rush through consultations, to allied health services like physiotherapy that rely heavily on stretches and optimism, we're here to keep you semi-functional.</p>
<p>Our “dedication” is reflected in our skilled yet overworked staff, decent equipment, and a waiting room atmosphere reminiscent of a DMV. Whether you need a check-up or dental work that costs a small fortune, we'll get you just enough care to keep coming back.</p>
</div>
</div>
</center>
</body>
</html>