-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
160 lines (141 loc) · 4.39 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chiropractor Wellness Center</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #35424a;
color: #ffffff;
padding: 10px 0;
text-align: center;
}
nav {
text-align: center;
padding: 15px;
background-color: #35424a;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-size: 18px;
}
section {
padding: 20px;
margin: 20px auto;
max-width: 1000px;
background-color: white;
border-radius: 5px;
}
h1, h2 {
color: #35424a;
}
.services, .testimonials {
display: flex;
justify-content: space-around;
}
.services div, .testimonials div {
padding: 10px;
background-color: #e2e2e2;
border-radius: 5px;
margin: 10px;
text-align: center;
flex: 1;
}
.contact-form {
display: flex;
flex-direction: column;
}
.contact-form input, .contact-form textarea {
padding: 10px;
margin: 5px 0;
border-radius: 5px;
border: 1px solid #ddd;
}
.contact-form button {
padding: 10px;
background-color: #35424a;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
footer {
text-align: center;
padding: 15px;
background-color: #35424a;
color: white;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Chiropractor Wellness Center</h1>
<p>Your Health, Our Priority</p>
</header>
<nav>
<a href="#services">Services</a>
<a href="#testimonials">Testimonials</a>
<a href="#contact">Contact Us</a>
</nav>
<section id="services">
<h2>Our Services</h2>
<div class="services">
<div>
<h3>Spinal Adjustments</h3>
<p>We provide expert spinal adjustments to help relieve pain and improve mobility.</p>
</div>
<div>
<h3>Massage Therapy</h3>
<p>Relax and rejuvenate with our professional massage therapy services.</p>
</div>
<div>
<h3>Physical Therapy</h3>
<p>Customized physical therapy sessions to aid in recovery and prevent injury.</p>
</div>
</div>
</section>
<section id="testimonials">
<h2>What Our Patients Say</h2>
<div class="testimonials">
<div>
<p>"The spinal adjustments have been life-changing. My back pain is gone!"</p>
<p><strong>- Sarah L.</strong></p>
</div>
<div>
<p>"The team is professional and caring. I feel at home here."</p>
<p><strong>- Michael P.</strong></p>
</div>
<div>
<p>"Excellent service! My recovery was faster than expected."</p>
<p><strong>- Emily R.</strong></p>
</div>
</div>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form class="contact-form">
<input type="text" name="name" placeholder="Your Name" required>
<input type="email" name="email" placeholder="Your Email" required>
<textarea name="message" rows="5" placeholder="Your Message" required></textarea>
<button type="submit">Send Message</button>
</form>
</section>
<footer>
<p>© 2024 Chiropractor Wellness Center. All Rights Reserved.</p>
</footer>
</body>
</html>