index.html 457 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>chat</title>
  6. <style>
  7. *{
  8. background: #ddd;
  9. }
  10. input, button{
  11. color: red;
  12. outline: none;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <input type="text" id="nick" placeholder="Nick">
  18. <input type="text" id="message" placeholder="message">
  19. <button id="send">Send</button>
  20. <div id="get"></div>
  21. <!-- <button id="emoji">emoji</button> -->
  22. <script src="index.js"></script>
  23. </body>
  24. </html>