-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
43 lines (43 loc) · 1008 Bytes
/
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
43
<!DOCTYPE html>
<!--Written by Ese Curtis
oct 2, 2020-->
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ChatBot</title>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<!--chat body-->
<div class="chat-box">
<!--user details-->
<div class="user-data">
<div class="user-picture">
🤖
</div>
<div class="user-name">ChatBot</div>
</div>
<!--main conversation-->
<div class="main-conversation" id="main-conversation">
<div class="user">
<a class="bubble">
hello
</a>
</div>
<div class="reply">
<a class="bubble">
hi
</a>
</div>
</div>
<!--messages panel for sending messages-->
<div class="message-panel">
<input type="text" placeholder="Aa.." id="send-value">
<button id="send-button">send</button>
</div>
</div>
<script src="assets/main.js"></script>
<script src="assets/config.js"></script>
</body>
</html>