-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
79 lines (76 loc) · 2.67 KB
/
index.php
File metadata and controls
79 lines (76 loc) · 2.67 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
<?php
// index.php
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HealthCare Plus - Your Trusted Medical Partner</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-container">
<div class="logo">HealthCare Plus</div>
<div class="nav-links">
<a href="index.php">Home</a>
<a href="adminlogin.php">Admin</a>
<a href="doctorlogin.php">Doctor</a>
<a href="patientlogin.php">Patient</a>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero">
<h1>Welcome to HealthCare Plus</h1>
<p>Providing exceptional healthcare services with a commitment to excellence and compassion. Your health is our priority.</p>
</section>
<!-- Features Section -->
<section class="features">
<div class="features-grid">
<div class="feature-card">
<h3>24/7 Emergency Care</h3>
<p>Round-the-clock emergency services with highly trained medical professionals.</p>
</div>
<div class="feature-card">
<h3>Expert Doctors</h3>
<p>Team of specialized doctors with years of experience in various medical fields.</p>
</div>
<div class="feature-card">
<h3>Modern Facilities</h3>
<p>State-of-the-art medical equipment and comfortable patient rooms.</p>
</div>
<div class="feature-card">
<h3>Online Consultations</h3>
<p>Virtual consultations available for your convenience and safety.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-section">
<h4>Contact Us</h4>
<p>Phone: (123) 456-7890</p>
<p>Email: info@healthcareplus.com</p>
<p>Address: 123 Medical Center Drive</p>
</div>
<div class="footer-section">
<h4>Quick Links</h4>
<a href="#">About Us</a>
<a href="#">Services</a>
<a href="#">Departments</a>
<a href="#">Contact</a>
</div>
<div class="footer-section">
<h4>Working Hours</h4>
<p>Emergency: 24/7</p>
<p>Regular: Mon-Fri 9:00-17:00</p>
<p>Weekend: 9:00-13:00</p>
</div>
</div>
</footer>
</body>
</html>