Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. body{
  5. margin: 0 auto;
  6. width: 100%;
  7. }
  8. header{
  9. height: 15%;
  10. width: 100%;
  11. background-color: blue;
  12. }
  13. #nav1{
  14. background-color: red;
  15. width: 15%;
  16. height: 85%;
  17. float: left;
  18. }
  19. #nav2{
  20. background-color: red;
  21. width: 15%;
  22. position: absolute;
  23. top: 15%;
  24. right: 0;
  25. height: 85%;
  26. }
  27. #container{
  28. background-color: pink;
  29. height: 85%;
  30. width: 70%;
  31. position: absolute;
  32. left: 15%;
  33. }
  34. footer{
  35. width: 100%;
  36. height: 10%;
  37. background-color: yellow;
  38. position: absolute;
  39. bottom: 0;
  40. }
  41. </style>
  42. </head>
  43. <body>
  44. <header>
  45.  
  46. </header>
  47. <nav id="nav1">
  48.  
  49. </nav>
  50. <div id="container">
  51. <article>
  52.  
  53. </article>
  54. <footer>
  55.  
  56. </footer>
  57. </div>
  58. <nav id="nav2">
  59.  
  60. </nav>
  61. </body>
  62. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement