-
Notifications
You must be signed in to change notification settings - Fork 0
/
chatbot.html
44 lines (40 loc) · 1.73 KB
/
chatbot.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
<!DOCTYPE html>
<html>
<head>
<title>Chat Bot</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" type="text/css" rel="stylesheet">
<link href="css/font-awesome.min.css" type="text/css" rel="stylesheet">
<link href="css/style.css" type="text/css" rel="stylesheet">
</head>
<body>
<div class="container-fluid">
<div class="container">
<h1 class="ml2">Welcome to ChatBot</h1>
</div>
<hr class="hr1">
<div class="left col-md-6 col-sm-12">
<img src="img/nao.png" class="robot" alt="robot">
</div>
<div class="chatbox col-md-6 col-sm-12">
<h1 class="ml9">
<span class="text-wrapper">
<span class="letters">Lets Chat </span>
</span>
</h1>
<div id="main">
<div>You: <span id="user"></span></div>
<div>ChatBot: <span id="chatbot"></span></div>
<div><input class="" id="input" type="text" placeholder="say anything..." autocomplete="off"/></div>
</div>
</div>
</div>
<script src="js/chatbot.js" type="text/javascript"></script>
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js"></script>
<script src="js/txt1.js"></script>
<script src="js/txt2.js"></script>
</body>
</html>