repth

Theme 13

Sep 20th, 2021
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Theme 12</title>
  7.  
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap" rel="stylesheet">
  11.  
  12. <style>
  13.  
  14. body{
  15. background-color: #d1bfb6;
  16. }
  17.  
  18. #container{
  19. position: absolute;
  20. top: 8%;
  21. left: 14%;
  22. background-color: #fff;
  23. width: 447px;
  24. padding: 20px;
  25. }
  26.  
  27. #headercontainer{
  28. position: relative;
  29. width: 447px;
  30. height: 327px;
  31. background-image: url('https://i.imgur.com/qGJhXuG.png'); /* 447x327 image */
  32. background-size: 100% 100%;
  33. }
  34.  
  35. #header{
  36. position: absolute;
  37. bottom: -12px;
  38. font-size: 23px;
  39. text-align: right;
  40. font-family: 'Lora', serif;
  41. width: 100%;
  42. letter-spacing: 28px;
  43. text-shadow: 0px 0px 4px #fdfdfc;
  44. color: #FDFDFC;
  45. }
  46.  
  47. #header h1{
  48. margin: 0px;
  49. }
  50.  
  51. #nav{
  52. position: absolute;
  53. left: 0%;
  54. top: 35%;
  55. }
  56.  
  57. #nav ul, li{
  58. list-style-type: none;
  59. padding-left: 0px;
  60. margin: 0px;
  61. }
  62.  
  63. #nav a{
  64. font-family: 'Arial';
  65. letter-spacing: 5px;
  66. padding: 1.5px;
  67. font-size: 8px;
  68. text-transform: uppercase;
  69. background-color: #fff;
  70. display: block;
  71. margin-bottom: 11px;
  72. width: 120px;
  73. text-align: center;
  74. text-decoration: none;
  75. color: #89605e;
  76. }
  77.  
  78. #content a{
  79. text-decoration: none;
  80. color: #ada39c;
  81. }
  82.  
  83. #credit a{
  84. text-decoration: none;
  85. }
  86.  
  87. #credit a:hover{
  88. color: #fff;
  89. }
  90.  
  91. a:visited{
  92. color: #89605e;
  93. }
  94.  
  95. #nav a:hover{
  96. color: #d1bfb6;
  97. }
  98.  
  99. #content a:hover{
  100. color: #89605e;
  101. }
  102.  
  103. #content{
  104. font-family: 'Tahoma', sans-serif;
  105. text-align: justify;
  106. }
  107.  
  108. #content h2{
  109. margin: 20px 0px 0px 0px;
  110. font-family: 'Verdana', sans-serif;
  111. text-transform: uppercase;
  112. letter-spacing: 5px;
  113. font-size: 11px;
  114. color: #ada39c;
  115. font-weight: normal;
  116. }
  117.  
  118. #content p{
  119. margin: 5px 0px 0px 0px;
  120. letter-spacing: 1px;
  121. font-size: 11px;
  122. line-height: 14px;
  123. color: #636159;
  124. }
  125.  
  126. ::-webkit-scrollbar{
  127. width: 8px;
  128. }
  129.  
  130. ::-webkit-scrollbar-track{
  131. background-color: #d1bfb6;
  132. }
  133.  
  134. ::-webkit-scrollbar-thumb{
  135. background-color: #fff;
  136. }
  137.  
  138. #credit{
  139. font-size: 12px;
  140. position: fixed;
  141. bottom: 0;
  142. right: 0;
  143. }
  144.  
  145. </style>
  146.  
  147. </head>
  148.  
  149. <body>
  150.  
  151. <div id="container">
  152.  
  153. <div id="headercontainer">
  154.  
  155. <div id="nav">
  156. <ul>
  157. <li><a href="URL HERE">home</a></li>
  158. <li><a href="URL HERE">about</a></li>
  159. <li><a href="URL HERE">blog</a></li>
  160. <li><a href="URL HERE">stuff</a></li>
  161. <li><a href="URL HERE">misc</a></li>
  162. </ul>
  163. </div>
  164.  
  165. <div id="header"><h1>welcome</h1></div>
  166.  
  167. </div>
  168.  
  169. <div id="content">
  170.  
  171. <!-- REPLACE CONTENT BELOW WITH YOUR CONTENT -->
  172.  
  173. <h2>Heading here</h2>
  174.  
  175. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus suscipit pharetra porta. Cras massa mi, placerat sit amet nisi sed, imperdiet varius ante. Vestibulum ullamcorper vitae nisi et sodales. Aenean nisl mi, dapibus id interdum et, bibendum sed elit. Fusce molestie, est vitae sollicitudin scelerisque, lacus odio tincidunt tellus, finibus volutpat mauris massa id est. Nunc fermentum ligula quis finibus feugiat.</p>
  176.  
  177. <p><i>Ut justo nibh, <a href="">ornare</a> ut blandit at.</i></p>
  178.  
  179. <p><b>In a rhoncus erat.</b></p>
  180.  
  181. <!-- END CONTENT -->
  182.  
  183. </div>
  184.  
  185. </div>
  186.  
  187. <div id="credit"><a href="https://repth.neocities.org/index.html">@Repth</a></div>
  188.  
  189. </body>
  190.  
  191. </html>
Advertisement
Add Comment
Please, Sign In to add comment