Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>WebSockets - Simple chat</title>
  6. <style>
  7. * { font-family:tahoma; font-size:12px; padding:0px;margin:0px;}
  8. p { line-height:18px; }
  9. div { width:500px; margin-left:auto; margin-right:auto;}
  10. #content { padding:5px; background:#ddd; border-radius:5px;
  11. overflow-y: scroll; border:1px solid #CCC;
  12. margin-top:10px; height: 160px; }
  13. #input { border-radius:2px; border:1px solid #ccc;
  14. margin-top:10px; padding:5px; width:400px;
  15. }
  16. #status { width:88px;display:block;float:left;margin-top:15px; }
  17. </style>
  18. </head>
  19. <body>
  20. <div id="content"></div>
  21. <div>
  22. <span id="status">Connecting...</span>
  23. <input type="text" id="input" disabled="disabled" />
  24. </div>
  25. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
  26. </script>
  27. <script src="./frontend.js"></script>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement