Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <title></title>
  6. <style type="text/css">
  7. section {
  8. background-color: turquoise;
  9. width: 100%;
  10. height: 800px;
  11. border: dotted;
  12. }
  13.  
  14. body {
  15. margin: 0;
  16. }
  17.  
  18. #menu {
  19. background-color: purple;
  20. position: fixed;
  21. width: 100px;
  22. height: 800px;
  23. z-index: 5;
  24. left:20%;
  25. top:-50%;
  26.  
  27. }
  28.  
  29. a{
  30. color:white;
  31. }
  32. </style>
  33. </head>
  34.  
  35. <body>
  36. <div id="menu">
  37. <a href="code-sketch1.html">julia</a>
  38. </div>
  39. <section class="piece" id="one">
  40. </section>
  41. <section id="two"></section>
  42. </body>
  43.  
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement