-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatbot.html
More file actions
52 lines (51 loc) · 1.21 KB
/
Chatbot.html
File metadata and controls
52 lines (51 loc) · 1.21 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html" charset="utf-8">
<title>Chatbot</title>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Indie+Flower|Noto+Sans">
<link rel="stylesheet" type="text/css" href="CBcss.css">
<link rel="javascript" type="text/javascript" href="CBjs.js">
<link rel="stylesheet" href="speech-input.css">
<script type="text/javascript" src="JScript.js"></script>
</head>
<body>
<style>
.si-wrapper input
{
font-size: 1em;
padding: .1em;
}
</style>
<h2>ChatBot</h2>
<table>
<tr>
<td align="center">
<button id="StartButton">Start</button>
</td>
</tr>
<tr>
<td>
<table id="AusgabeFeld" border="0">
<tbody>
</tbody>
</table>
</td>
</tr>
<tr>
<td>
<div class="si-wrapper">
<input type="text" class="si-input" id="EingabeFeld">
<button class="si-btn">
speech input
<span class="si-mic"></span>
<span class="si-holder"></span>
</button>
</div>
<button id="SendeButton">Senden</button>
</td>
</tr>
</table>
<script src="speech-input.js"></script>
</body>
</html>