painted_dreams87

Halloween Layout 1 Coding

Sep 5th, 2020
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 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("https://i.imgur.com/GyfvfmD.png");
  10. }
  11. #layout {
  12. width: 900px;
  13. height: 700px;
  14. margin: 0 auto;
  15. background-image: url("https://i.imgur.com/clulZoO.png");
  16. }
  17. #main {
  18. font: 10pt tahoma;
  19. color: #000000;
  20. top: 170px;
  21. left: 110px;
  22. width: 685px;
  23. height: 470px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 470px;
  28. overflow: auto;
  29. }
  30. .table {
  31. display: inline;
  32. text-align: left;
  33. }
  34. td {
  35. padding: 10px;
  36. }
  37. h1 {
  38. font: 14pt tahoma;
  39. color: #ead29f;
  40. text-align: center;
  41. text-transform: uppercase;
  42. background-color: #020202;
  43. letter-spacing: 2px;
  44. line-height: 25px;
  45. }
  46. h2 {
  47. font: 11pt tahoma;
  48. color: #020202;
  49. text-align: left;
  50. border-width: 2px;
  51. border-bottom-style: solid;
  52. border-top-style: solid;
  53. border-color: #ead29f;
  54. letter-spacing: 4px;
  55. line-height: 20px;
  56. }
  57. b {
  58. color: #f5c45f;
  59. font: 10pt tahoma;
  60. font-weight: bold;
  61. line-height: 14px;
  62. }
  63. i {
  64. color: #ac8c59;
  65. font: 10pt tahoma;
  66. font-style: italic;
  67. line-height: 14px;
  68. }
  69. a:link, a:visited, a:active {
  70. color: #f1aa00;
  71. font: 10pt tahoma;
  72. text-decoration: none;
  73. }
  74. a:hover {
  75. color: #f5c45f;
  76. font: 10pt tahoma;
  77. text-decoration: none;
  78. }
  79. </style>
  80.  
  81. <br><br><div id="layout" style="position: relative;">
  82.  
  83.  
  84. <div id="main" style="position: absolute;">
  85. <a name="home"></a>
  86. <div class="page">
  87. <h1>Header One</h1>
  88. <h2>Header Two</h2>
  89. <b>bold</b> <i>italic</i> <a href="/~slugclubministry">link</a> text
  90. </div>
  91.  
  92.  
  93. <a name="hidden"></a>
  94. <div class="page">
  95. This is a hidden anchored page in case you need another page. To link from the homepage to this page, copy and paste the coding in the box below on to the homepage:<br><br>
  96. <textarea><a href="#hidden">link name</a></textarea><br><br>
  97.  
  98. You can change the name of this link by changing <i>hidden</i> to what you would like by [a name="hidden"] in the code and changing [a href="#hidden"] taken from the above text box to match what you named your link.<br><br>
  99.  
  100. To link from this page back to the homepage, copy and paste the coding in the box below to this page: <br><br>
  101. <textarea><a href="#home">return home</a></textarea>
  102. </div>
  103.  
  104. </div></div>
Add Comment
Please, Sign In to add comment