painted_dreams87

Haunted Maze Coding

Sep 6th, 2020
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 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/7eP4kWp.png");
  10. }
  11. #layout {
  12. width: 900px;
  13. height: 700px;
  14. margin: 0 auto;
  15. background-image: url("https://i.imgur.com/tctEd5P.png");
  16. }
  17. #main {
  18. font: 10pt tahoma;
  19. color: #000000;
  20. top: 170px;
  21. left: 90px;
  22. width: 710px;
  23. height: 490px;
  24. overflow: hidden;
  25. }
  26. .page {
  27. height: 490px;
  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: #d9ddcd;
  40. text-align: center;
  41. text-transform: uppercase;
  42. background-color: #323219;
  43. letter-spacing: 2px;
  44. line-height: 25px;
  45. }
  46. h2 {
  47. font: 12pt tahoma;
  48. color: #d9ddcd;
  49. text-align: left;
  50. background-color: #5d6745;
  51. padding-left: 5px;
  52. letter-spacing: 2px;
  53. line-height: 20px;
  54. }
  55. b {
  56. color: #323219;
  57. font: 10pt tahoma;
  58. font-weight: bold;
  59. line-height: 14px;
  60. }
  61. i {
  62. color: #000000;
  63. font: 10pt tahoma;
  64. font-style: italic;
  65. line-height: 14px;
  66. }
  67. a:link, a:visited, a:active {
  68. color: #5d6745;
  69. font: 10pt tahoma;
  70. text-decoration: none;
  71. }
  72. a:hover {
  73. color: #323219;
  74. font: 10pt tahoma;
  75. text-decoration: none;
  76. }
  77. </style>
  78.  
  79. <br><br><div id="layout" style="position: relative;">
  80.  
  81.  
  82. <div id="main" style="position: absolute;">
  83. <a name="home"></a>
  84. <div class="page">
  85. <h1>Header One</h1>
  86. <h2>Header Two</h2>
  87. <b>bold</b> <i>italic</i> <a href="/~slugclubministry">link</a> text
  88.  
  89. </div>
  90.  
  91.  
  92. <a name="hidden"></a>
  93. <div class="page">
  94. 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>
  95. <textarea><a href="#hidden">link name</a></textarea><br><br>
  96.  
  97. 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>
  98.  
  99. To link from this page back to the homepage, copy and paste the coding in the box below to this page: <br><br>
  100. <textarea><a href="#home">return home</a></textarea>
  101. </div>
  102.  
  103. </div></div>
Add Comment
Please, Sign In to add comment