-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
30 lines (27 loc) · 1.18 KB
/
index.php
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
<?php include_once "header.php"; ?>
<div class="hero-section">
<div class="hero-content">
<h1>Welcome to Doctor Who</h1>
<p>Providing exceptional healthcare services with a touch of timeless wisdom.</p>
<a href="addPatient.php" class="btn btn-primary">Add New Patient</a>
<a href="getPatient.php" class="btn btn-secondary">View Patients</a>
</div>
</div>
<section class="features">
<div class="feature-card">
<i class="fas fa-user-md"></i>
<h3>Experienced Doctors</h3>
<p>Our team of highly skilled and experienced doctors ensures top-notch medical care.</p>
</div>
<div class="feature-card">
<i class="fas fa-hospital"></i>
<h3>State-of-the-Art Facilities</h3>
<p>We invest in the latest medical technology and equipment to provide the best possible treatment.</p>
</div>
<div class="feature-card">
<i class="fas fa-hand-holding-heart"></i>
<h3>Compassionate Care</h3>
<p>Our compassionate staff treats every patient with dignity and respect, providing personalized care.</p>
</div>
</section>
<script src="js/background.js"></script>