index.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>HW13</title>
  6. <style>
  7. .chat-header {
  8. text-align: left;
  9. }
  10. #chat-message {
  11. border-radius: 5px;
  12. padding: 7px;
  13. background-color: #ccc;
  14. display: inline-block;
  15. margin-left: 5px;
  16. }
  17. .msg {
  18. width: 250px;
  19. border: 1px solid grey;
  20. padding: 5px 10px;
  21. margin: 5px;
  22. background: seashell;
  23. }
  24. p {
  25. margin: 5px;
  26. }
  27. .msg p:first-child {
  28. font-size: 20px;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <main class="main">
  34. <div class="chat">
  35. <h1 class="chat-header">Chat</h1>
  36. <div id="content" class = "chat-header">
  37. <div class="form">
  38. Nick : <input type="text" id = 'nick' value="test">
  39. Message : <input type="text" id = 'msg'>
  40. <button id="sendButton">Отправить</button>
  41. </div>
  42. </div>
  43. </div>
  44. <div id="msgHolder"></div>
  45. </main>
  46. <script src="main.js"></script>
  47. </body>
  48. </html>