-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCB.html
More file actions
31 lines (31 loc) · 1.29 KB
/
CB.html
File metadata and controls
31 lines (31 loc) · 1.29 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
29
30
31
<!-- <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="chatbot.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"rel="stylesheet">
<link rel="icon" href="images/favicon.png">
<title>Document</title>
</head>
<body>
<div class="chatbot">
<header><h2>Weather Chatbot</h2></header>
<ul class="chatbox">
<li class="chat incoming">
<span class="material-icons">smart_toy</i></span>
<p>Hi there 👋 <br> How can I help you today?</p>
</li>
<li class="chat outgoing">
<p>Lorem ipsum dolor sit amet.</p>
</li>
</ul>
<div class="chat-input">
<textarea placeholder="Enter a message..." required></textarea>
<span id="send_btm" class="material-icons">send</span>
</div>
</div>
<script src="chatbot.js"></script>
</body>
</html> -->