tangycode

ridley page

Jun 29th, 2019
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>ridley page</title>
  6. <link rel="shortcut icon" href="favicon url">
  7.  
  8. <style type="text/css">
  9.  
  10. body {
  11. background:#000;
  12. background-image:url('url here');
  13. background-attachment:fixed;
  14. font-size:14px;
  15. font-family:times;
  16. color:#fff;
  17. }
  18.  
  19. a {
  20. color:#000;
  21. background:red;
  22. text-decoration:underline;
  23. -moz-transition-duration: 0.5s;
  24. -o-transition-duration: 0.5s;
  25. -webkit-transition-duration: 0.5s;
  26. transition-duration: 0.5s;
  27. }
  28.  
  29. a:hover {
  30. color:#000;
  31. background:#fff;
  32. -moz-transition-duration: 0.5s;
  33. -o-transition-duration: 0.5s;
  34. -webkit-transition-duration: 0.5s;
  35. transition-duration: 0.5s;
  36. }
  37.  
  38. .container {
  39. width:1000px;
  40. margin:0 auto;
  41. overflow:hidden;
  42. text-align:center;
  43. }
  44.  
  45. .banner {
  46. margin-right:auto;
  47. margin-left:auto;
  48. margin-bottom:25px;
  49. margin-top:60px;
  50. width:775px;
  51. height:auto;
  52. background-image:url('https://66.media.tumblr.com/e34173111bbc937c25af2e60b8d09d59/tumblr_inline_ptk4cmEBHD1tyarbw_1280.gif');
  53. background-repeat:repeat-x;
  54. }
  55.  
  56. .bio {
  57. width:200px;
  58. height:300px;
  59. border:4px solid #fff;
  60. background:#820200;
  61. display:inline-block;
  62. position:relative;
  63. margin-left:25px;
  64. margin-right:25px;
  65. overflow:hidden;
  66. }
  67.  
  68. .textbox {
  69. width:300px;
  70. height:150px;
  71. border:4px solid #fff;
  72. background:#820200;
  73. display:inline-block;
  74. position:relative;
  75. overflow:hidden;
  76. vertical-align:top;
  77. }
  78.  
  79. .question {
  80. color:#000;
  81. text-transform:uppercase;
  82. font-weight:bold;
  83. text-shadow:0 0 3px #000;
  84. font-size:16px;
  85. display:inline-block;
  86. margin-left:15px;
  87. }
  88.  
  89. </style>
  90. </head>
  91. <body>
  92. <div class="container">
  93. <div class="banner">
  94. <img src="https://66.media.tumblr.com/e34173111bbc937c25af2e60b8d09d59/tumblr_inline_ptk4cmEBHD1tyarbw_1280.gif">
  95. </div>
  96. <div class="bio" style="text-align:left;">
  97. <p><div class="question">name:</div> name here</p>
  98. <p><div class="question">age:</div> age here</p>
  99. <p><div class="question">prns:</div> prns here</p>
  100. <p><div class="question">role:</div> role here</p>
  101. </div>
  102. <div class="textbox">
  103. <p>put your text here</p>
  104. </div>
  105. <div class="bio">
  106. <p><div class="question" style="margin-left:0;">interests</div></p>
  107. <ul style="text-align:left">
  108. <li>interest 1</li>
  109. <li>interest 2</li>
  110. <li>interest 3</li>
  111. <li>just keep adding li tags</li>
  112. </ul>
  113. </div>
  114. </div>
  115. </body>
  116. </html>
Advertisement
Add Comment
Please, Sign In to add comment