eudoxie commited on
Commit
c18f816
·
verified ·
1 Parent(s): e589906

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +40 -0
index.html ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <style>
7
+ body {
8
+ font-family: Arial, sans-serif;
9
+ background-color: #f0f0f0;
10
+ display: flex;
11
+ justify-content: center;
12
+ align-items: center;
13
+ height: 100vh;
14
+ margin: 0;
15
+ }
16
+
17
+ .chat-container {
18
+ background-color: white;
19
+ border-radius: 10px;
20
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
21
+ padding: 20px;
22
+ width: 100%;
23
+ max-width: 600px;
24
+ }
25
+
26
+ h1 {
27
+ text-align: center;
28
+ color: #333;
29
+ }
30
+
31
+ </style>
32
+ <title>MediGuide ChatBot</title>
33
+ </head>
34
+ <body>
35
+ <div class="chat-container">
36
+ <h1>Welcome to MediGuide ChatBot</h1>
37
+ <div id="chatbot-interface"></div>
38
+ </div>
39
+ </body>
40
+ </html>