-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatbotv2HTML.html
More file actions
31 lines (27 loc) 路 1.31 KB
/
Copy pathchatbotv2HTML.html
File metadata and controls
31 lines (27 loc) 路 1.31 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 name="description" content="chatbot v2">
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width">
<title>Chatbot by Robert Yang</title>
<link rel = "stylesheet" href = "chatbotv2CSS.css">
<script type="text/javascript" src="chatbotv2JS.js"></script>
</head>
<body>
<h1> Chat </h1>
<section class = "flex" id = "chatlog">
</section>
<section class = "flex2">
<textarea placeholder = "Enter text here!" rows = 4 id = "area"> </textarea>
</section>
<section class = "flex3">
<button class = "emoji" id = "smile-emoji" onclick = "addEmoticon(this.id)">馃榾</button>
<button class = "emoji" id = "funny-emoji" onclick = "addEmoticon(this.id)">馃ぃ</button>
<button class = "emoji" id = "smirking-emoji" onclick = "addEmoticon(this.id)">馃槒</button>
<button class = "emoji" id = "sleeping-emoji" onclick = "addEmoticon(this.id)">馃槾</button>
<button class = "emoji" id = "tongue-emoji" onclick = "addEmoticon(this.id)">馃槢</button>
<button class = "emoji" id = "nose-emoji" onclick = "addEmoticon(this.id)">馃槫</button>
</section>
</body>
</html>