Advertisement
Guest User

Untitled

a guest
Apr 17th, 2011
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  2. <html>
  3.  
  4. <head>
  5. <title>NodeJs WS Chat</title>
  6. <style type="text/css">
  7. body {
  8. padding-left: 8em; }
  9. ul.navbar {
  10. position: absolute;
  11. top: 2em;
  12. left: 1em }
  13. ul.userlist {
  14. position: absolute;
  15. top: 2em;
  16. right: 1em }
  17. textarea.chatbox {
  18. resize: none;
  19. margin-right: 1em;
  20. width: 100%;
  21. }
  22. textarea.chatbox2 {
  23. margin-right: 1em;
  24. resize: none;
  25. }
  26. </style>
  27. </head>
  28.  
  29.  
  30.  
  31. <body>
  32.  
  33. <ul class="navbar" >
  34. <li><a href="javascript:void(0)" onclick="login()">Log In</a>
  35. </ul>
  36.  
  37. <ul class="userlist" ><li />test<li /> test2<li /> test4<li />test 6</ul>
  38.  
  39. <h1>Chatbox</h1>
  40.  
  41. <p>A chatbox test thing.</p>
  42. <p >
  43. <textarea class="chatbox" disabled readonly rows=8 cols=50 id="box1" ></textarea> <br />
  44. <textarea class="chatbox2" disabled rows=1 cols=50 id="box2" ></textarea></p>
  45.  
  46. </body>
  47.  
  48. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement