-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.08 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title>Chatbot</title>
<link rel="icon" href="bot.png" />
<link rel="stylesheet" href="style.css" />
<!--<script language="JavaScript" type="text/javascript" src="index.js"></script>-->
</head>
<body>
<div id="container" class="container">
<div id="chat" class="chat">
<div id="messages" class="messages"></div>
<input
id="input"
type="text"
placeholder="Di algo..."
autocomplete="off"
autofocus="true"
/>
<a class="button" href="#" onclick="enviar();"></a>
<!--<button class="button" href="enviar.png"></button>-->
<!--<button id="enviar" class="boton" type="button" scr="enviar.png">-->
</div>
<img src="bot.png" alt="Robot cartoon" height="500vh" />
</div>
</body>
<script type="text/javascript" src="index.js"></script>
<script type="text/javascript" src="constants.js"></script>
<!-- Quita el comentario del script de abajo para que el robot hable-->
<script type="text/javascript" src="speech.js"></script>
</html>