index.html 805 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div class="wrapper" style="display: flex; flex-direction: column">
  11. <input id="inputName" type="text" placeholder="Enter a name" style="align-items: center; min-height: 50px; font-size: 20px;">
  12. <input id="inputMsg" type="text" placeholder="Enter a message" style="align-items: center; min-height: 50px; font-size: 20px;">
  13. <button id="btn" style="align-items: center; min-height: 50px; font-size: 20px;">Send</button>
  14. </div>
  15. <div id="chat"></div>
  16. <script src="index.js"></script>
  17. </body>
  18. </html>