-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchatbot.html
More file actions
28 lines (25 loc) · 1.16 KB
/
Copy pathchatbot.html
File metadata and controls
28 lines (25 loc) · 1.16 KB
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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Chatbot</title>
<link rel="stylesheet" href="css/chatbot.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css" integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body onload="init()">
<div id="main">
<h2>BlockEd BOT</h2>
<h3>Need help?<br>Tell us!!</h3>
<div id="msg_area">
<div id="robot">
<div class="bot"></div>
</div>
</div>
<div id="input">
<input type="text" id="text" placeholder="New Message"> <button id="send">Send <i class="fas fa-paper-plane"></i></button>
</div>
</div>
<script type="text/javascript" src="js/chatbot.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.1.3/axios.min.js" integrity="sha512-0qU9M9jfqPw6FKkPafM3gy2CBAvUWnYVOfNPDYKVuRTel1PrciTj+a9P3loJB+j0QmN2Y0JYQmkBBS8W+mbezg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</body>
</html>