Advertisement
painted_dreams87

Jen's Layout

Mar 12th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. <style>
  2. table {
  3. display: none;
  4. }
  5. .page table {
  6. display: table;
  7. }
  8. body {
  9. background-image: url("http://i.imgur.com/OSVp0eX.png");
  10. }
  11. #layout {
  12. width: 800px;
  13. height: 600px;
  14. margin: 0 auto;
  15. background-image: url("http://i.imgur.com/wHif5jX.png");
  16. }
  17. #main {
  18. font: 10pt tahoma;
  19. color: #000000;
  20. top: 220px;
  21. left: 300px;
  22. width: 480px;
  23. height: 370px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 370px;
  28. overflow: auto;
  29. }
  30. #nav {
  31. top: 330px;
  32. left: 40px;
  33. width: 215px;
  34. height: 255px;
  35. overflow: hidden;
  36. text-align: center;
  37. }
  38. .table {
  39. display: inline;
  40. text-align: left;
  41. }
  42. td {
  43. padding: 10px;
  44. }
  45. h1 {
  46. font: 11pt tahoma;
  47. color: #8c8bc6;
  48. text-align: center;
  49. border-width: 1px;
  50. border-bottom-style: solid;
  51. border-color: #a2c0cf;
  52. letter-spacing: 4px;
  53. line-height: 20px;
  54. }
  55. h2 {
  56. font: 10pt tahoma;
  57. color: #a2c0cf;
  58. border-width: 1px;
  59. border-bottom-style: solid;
  60. border-color: #c8bfd6;
  61. letter-spacing: 2px;
  62. line-height: 20px;
  63. }
  64. b {
  65. color: #9c92c9;
  66. font: 10pt tahoma;
  67. font-weight: bold;
  68. line-height: 14px;
  69. }
  70. i {
  71. color: #b0cce9;
  72. font: 10pt tahoma;
  73. font-style: italic;
  74. line-height: 14px;
  75. }
  76. a:link, a:visited, a:active {
  77. color: #a2c0cf;
  78. font: 10pt tahoma;
  79. text-decoration: none;
  80. }
  81. a:hover {
  82. color: #f3d9db;
  83. font: 10pt tahoma;
  84. text-decoration: none;
  85. }
  86. </style><br><br><br><div id="layout" style="position: relative;">
  87.  
  88.  
  89. <div id="nav" style="position: absolute;">
  90. <a href="#home" class="nav">Home</a><br><a href="#link1" class="nav">Link 1</a><br><a href="#link2" class="nav">Link 2</a><br></div>
  91.  
  92.  
  93. <div id="main" style="position: absolute;">
  94. <a name="home"></a>
  95. <div class="page">
  96. <h1>Welcome!</h1>
  97. <b>bold</b> <i>italic</i>
  98.  
  99. <h2>Header Two</h2>
  100. <p>
  101. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum
  102. </p>
  103. </div>
  104.  
  105.  
  106.  
  107.  
  108. <a name="link1"></a>
  109. <div class="page">
  110. <h1>Link 1</h1>
  111. -
  112. </div>
  113.  
  114.  
  115.  
  116.  
  117. <a name="link2"></a>
  118. <div class="page">
  119. <h1>Link 2</h1>
  120. -
  121. </div>
  122.  
  123. </div></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement