-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbotchat.html
26 lines (22 loc) · 963 Bytes
/
botchat.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
<!DOCTYPE html>
<html>
<head>
<title>Alpha</title>
<!-- add icon link -->
<link rel = "icon" href = "https://cdn.discordapp.com/attachments/844949406684151861/916383115411329084/Snip20210629_64-removebg-preview.png"
<link rel="stylesheet" type="text/css" href="./style.css">
</head>
<body>
<div class="chatbox">
<div class="chatlogs">
</div>
<div class="chat-form">
<input class="textarea" id="msgcontent"/>
<button onclick="send" id="button_send"><svg aria-hidden="true" role="img" class="button-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<path fill="currentColor" d="M476 3.2L12.5 270.6c-18.1 10.4-15.8 35.6 2.2 43.2L121 358.4l287.3-253.2c5.5-4.9 13.3 2.6 8.6 8.3L176 407v80.5c0 23.6 28.5 32.9 42.5 15.8L282 426l124.6 52.2c14.2 6 30.4-2.9 33-18.2l72-432C515 7.8 493.3-6.8 476 3.2z"></path>
</svg>Send</button>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>