-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
29 lines (23 loc) · 925 Bytes
/
index.php
File metadata and controls
29 lines (23 loc) · 925 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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="../../images/Logo.png" type="image/gif" sizes="16x16">
<title>Chat Bot</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<div id="container">
<a class="voice">Click & Speak</a>
<p class="voice2text"></p>
</div>
<script src="assets/respondToBoi.js"></script>
<script src="assets/sendResponse.js"></script>
<script src="assets/firstQuestion.js"></script>
<script src="assets/main.js"></script>
</body>
</html>