HW_Chat.HTML 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <!-- saved from url=(0025)http://192.168.1.20:5000/ -->
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. <!-- <link rel="stylesheet" href="./css/reset.css" />
  7. <link rel="stylesheet" href="./css/normalize.css" /> -->
  8. <link rel="stylesheet" href="./css/stylechat.css" />
  9. <title>CHAT_FEA23_Sheva</title>
  10. <script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"></script>
  11. </head>
  12. <body>
  13. <div id="formContainer"></div>
  14. <div class="allWindow">
  15. <div class="chatPlusNick">
  16. <div class="chatClass" id="chatWindow">Собственно сам чат</div>
  17. <div class="nicksPresent" id="whoIsHere">
  18. Кто у нас тут в чате:
  19. </div>
  20. </div>
  21. <div class="controlPanel">
  22. <span class="nickName">Твой ник:</span>
  23. <input type="text" id="nickId" class="nickValueClass" />
  24. <input type="text" id="msgId" class="msgClass" />
  25. <button id="sendId" class="sendBtn">Send msg</button>
  26. </div>
  27. </div>
  28. <script src="./hw06_chat.js"></script>
  29. </body>
  30. </html>