Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Chat</title>
  5. <meta charset="utf-8">
  6. <link rel="icon" href="logo_tecnala.png">
  7. <link rel="stylesheet" href="estilos.css">
  8. </head>
  9. <body>
  10. <div id="conversacion" class="conversation">
  11.  
  12. </div>
  13.  
  14. <input type="text" id="mensaje" onkeypress="isEnter(event);" placeholder="Escribir aquí...">
  15. <button id="send">Enviar</button>
  16. <input type="" id="name" class="input-name" placeholder="Nombre">
  17.  
  18. <script src="script.js"></script>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement