-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancercure.html
184 lines (159 loc) · 8.75 KB
/
cancercure.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chatbot</title>
<style>
/* Reset default margin and padding for consistency */
* {
margin: 0;
padding: 0;
}
/* Apply a background color and set the font for the entire page */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
/* Style the header and navigation bar */
header {
background-color: #27ae60;
color: #fff;
padding: 20px 0;
text-align: center;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
}
.logo img {
max-width: 50px;
}
.nav-links {
list-style: none;
display: flex;
gap: 20px;
align-items: center;
}
.nav-links li a {
text-decoration: none;
color: #fff;
font-weight: 600;
}
/* Style the container for content */
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* Style the buttons and links */
.btn {
display: inline-block;
padding: 10px 20px;
text-decoration: none;
background-color: #27ae60;
color: #fff;
font-weight: 600;
border: none;
cursor: pointer;
transition: background-color 0.2s;
}
.btn:hover {
background-color: #219843;
}
.btn-secondary {
background-color: #333;
}
/* Style the hero section with background image */
.hero-section {
background-image: url('home_image.jpg');
background-size: cover;
background-position: center;
color: #fff;
text-align: center;
padding: 100px 0;
}
.hero-content {
max-width: 800px;
margin: 0 auto;
}
.hero-content h1 {
font-size: 36px;
margin-bottom: 20px;
}
.hero-content p {
font-size: 18px;
margin-bottom: 30px;
}
/* Style the hero image */
.hero-image img {
max-width: 100%;
height: auto;
}
/* Style the about section */
.about-section {
background-color: #fff;
padding: 50px 0;
}
.about-section h2 {
font-size: 24px;
text-align: center;
margin-bottom: 20px;
}
.about-section p {
font-size: 16px;
max-width: 800px;
margin: 0 auto;
}
/* Style the footer section */
.footer-section {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
/* Center the chatbot container */
#chatbot-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
iframe {
width: 100%;
min-height: 700px;
border: none;
}
</style>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="careguardian_logo.png" alt="Logo">
<h1>CareGuardian</h1>
</div>
<ul class="nav-links">
<li><a href="home.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="help.html">Contact</a></li>
</ul>
</nav>
</header>
<div class="container">
<!-- Your website content here -->
</div>
<div id="chatbot-container">
<iframe src="https://www.chatbase.co/chatbot-iframe/ITDhOSuWbxRfPQYZFD7VG" title="Chatbot" frameborder="0"></iframe>
</div>
<footer class="footer-section">
<p>© 2024 CareGuardian. All rights reserved.</p>
</footer>
</body>
</html>