-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 756 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 756 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HOME - JQuery</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="header">
<h1>JQuery Chatbot</h1>
</div>
<div class="container">
</div>
<div class="controls">
<textarea id='text-sms' name="controls-box" placeholder="Enter your message here.."></textarea>
<button type="button" id="send-button">Send</button>
<br>
<input checked type="checkbox" id="enter">
<label>Send On Enter</label>
</div>
<script type="text/javascript" src="js/jquery-3.1.0.min.js" ></script>
<script type="text/javascript" src='js/app.js' ></script>
</body>
</html>