-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (24 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DearDoctor</title>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="chat-header">
<img src="https://i.imgur.com/11qLOst.png" class="ai-icon">
<h2 class="chat-title"> DearDoctor - Your Personal AI Doctor</h2>
<b><p class="chat-bot-name">Consult your doctor in any serious issue. Liked project ? Rate <a href=https://github.com/zubairjammu786/deaddoctor">Here</a></p></b>
</div>
<div id="chat-display" class="chat-display"></div>
<div class="input-row">
<input type="text" id="user-input" class="user-input w3-input" placeholder="Type a message...">
<button onclick="sendMessage()" class="send-button">Send</button>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="functionality.js"></script>
</body>
</html>