-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
35 lines (28 loc) · 907 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
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>WeatherAgent</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container-root">
<div class="container">
<ol class="chat">
</ol>
</div>
<div class="container">
<div class="json-response">
<h3>JSON Response</h3>
<textarea id="response" cols=65 rows=35></textarea>
</div>
</div>
<input id="speech" class="textarea" type="text" placeholder="Type here!"/>
<button id="rec" class="btn"><i class="fa fa-microphone fa-lg" aria-hidden="true"></i></button>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="converse.js"></script>
</body>
</html>