-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
142 lines (122 loc) · 4 KB
/
about.php
File metadata and controls
142 lines (122 loc) · 4 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
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
<?php
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<style>
:root {
--main-bg: radial-gradient(circle,
rgba(113, 105, 83, 1) 0%,
rgba(1, 45, 51, 1) 34%);
--text-color: #f0e6d2;
--accent-color: #ffc96b;
}
body {
margin: 0;
font-family: "Poppins", sans-serif;
background: var(--main-bg);
color: var(--text-color);
}
header {
text-align: center;
padding: 60px 20px 30px;
}
header h1 {
font-size: 3.2rem;
margin-bottom: 10px;
color: #fff;
}
header p {
font-size: 1.2rem;
color: var(--accent-color);
font-weight: 500;
}
.about-container {
max-width: 1000px;
margin: auto;
padding: 40px 20px;
}
.about-section {
margin-bottom: 50px;
}
.about-section h2 {
font-size: 2rem;
margin-bottom: 15px;
color: var(--accent-color);
}
.about-section p {
font-size: 1.05rem;
line-height: 1.8;
margin: 0;
}
footer {
text-align: center;
padding: 25px 10px;
font-size: 0.9rem;
color: #cfcfcf;
}
.horizontal-line {
height: 1px;
width: 96%;
margin: 0 auto;
background: white;
}
</style>
</head>
<body>
<!-- Navbar -->
<?php
require 'navbar.php';
?>
<div class="horizontal-line"></div>
<header>
<h1>Welcome to Appointify</h1>
<p>Where Healthcare Meets Simplicity</p>
</header>
<div class="about-container">
<section class="about-section">
<h2>Our Mission</h2>
<p>
Appointify is here to revolutionize how you book medical appointments.
Our goal is simple — eliminate waiting times, simplify scheduling, and
give you direct access to trusted healthcare professionals at your
fingertips.
</p>
</section>
<section class="about-section">
<h2>Why Appointify?</h2>
<p>
We offer a seamless platform where patients can view doctor profiles,
availability, and consultation charges — all in one place. Whether
it's a routine visit or a specialist consultation, you're just a click
away from getting the care you need.
</p>
</section>
<section class="about-section">
<h2>Our Commitment</h2>
<p>
We’re not just a platform — we’re a promise to make healthcare more
accessible and less stressful. With user-friendly tools and 24/7
access, Appointify ensures you're always in control of your
appointments.
</p>
</section>
<section class="about-section">
<h2>Join Us</h2>
<p>
Discover the smarter way to manage your healthcare. Book appointments
anytime, from anywhere — with <strong>Appointify</strong>.
</p>
</section>
</div>
<footer>© 2025 Appointify. All rights reserved.</footer>
<!-- Bootstrap JS and jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>