-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (41 loc) · 1.12 KB
/
index.html
File metadata and controls
44 lines (41 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Chat AI</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,inital-scale=1.0">
<link href="estilos.css" rel="stylesheet">
<style>
header{background-color:yellow;} /* Código CSS */
</style>
<script src="script.js"></script>
<script type="text/javascript">
/* Código JS */
</script>
</head>
<body>
<main>
<ul>
<li class="mesagge bot">
<span>ChatAI</span>
<span>Respuesta del bot</span>
</li>
<li class="mesagge user">
<span>Tú</span>
<span>Respuesta del usuario</span>
</li>
</ul>
</main>
<form>
<input name="message" placeholder="Escribe tu mensaje aquí...">
<button>Enviar</button>
</form>
<!--El template es un elemento que no se pinta en pantalla solo esta ahi para recuperar los datos y pintarlos-->
<template id="message-template">
<li class="mesagge">
<span></span>
<span></span>
</li>
</template>
</body>
</html>