-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.html
42 lines (36 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ask Your Questions!</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="chatbot-container">
<div id="header">
<h1>Chatbot</h1>
</div>
<div id="chatbot">
<div id="conversation">
<div class="chatbot-message">
<p class="chatbot-text">Hi! I,m Pavankumar👋 it's great to see you!</p>
</div>
</div>
<form id="input-form">
<message-container>
<input id="input-field" type="text" placeholder="Type your message here">
<button id="submit-button" type="submit">
<img class="send-icon" src="send-message.png" alt="">
</button>
</message-container>
</form>
</div>
</div>
<script src="chatbot.js"></script>
</body>
<div>
<p>Copyright © 2023 Mr.Pavankumar. All Rights are reserved</p>
</div>
</html>