Advertisement
Guest User

about me page 01; by primrosetylers

a guest
Mar 24th, 2014
714
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.04 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <!---
  5.  
  6. about me page 01
  7. coded by irma at primrosetylers.tumblr.com
  8. do not steal, redistribute, or remove the credit
  9.  
  10. -->
  11.  
  12. <title>{Title}</title>
  13. <link rel="shortcut icon" href="{Favicon}">
  14.  
  15. <link href='http://fonts.googleapis.com/css?family=Carrois+Gothic+SC|Metrophobic' rel='stylesheet' type='text/css'> <!--GOOGLE FONT-->
  16.  
  17. <style type="text/css">
  18.  
  19. #everything {
  20. width:640px;
  21. margin-left:auto;
  22. margin-right:auto;
  23. padding-top:125px;
  24. }
  25.  
  26.  
  27. #images {
  28. margin-bottom:15px;
  29. text-align:center;
  30. }
  31.  
  32. #ft {
  33. margin-top:-67px;
  34. position:absolute;
  35. width:0px;
  36. overflow:hidden;
  37. height:20px;
  38. font-family:'Metrophobic'; /*CHANGE THE FONT OF THE LINKS*/
  39. background-color:#ffff66; /*CHANGE THE COLOR OF THE LINK BACKGROUND*/
  40. color:transparent;
  41. text-transform:lowercase;
  42. opacity:0.8;
  43. -webkit-transition:0.5s;
  44. -moz-transition:0.5s;
  45. -o-transition:0.5s;
  46. -ms-transition:0.5s;
  47. }
  48.  
  49. #image:hover #ft {
  50. width:104px;
  51. color:#000; /*CHANGE THE COLOR OF THE LINK TEXT*/
  52. -webkit-transition:0.5s;
  53. -moz-transition:0.5s;
  54. -o-transition:0.5s;
  55. -ms-transition:0.5s;
  56. opacity:1;
  57. }
  58.  
  59. #image {
  60. display:inline-block;
  61. margin-left:20px;
  62. margin-right:20px;
  63. }
  64.  
  65. img {
  66. height:100px;
  67. width:100px;
  68. padding:1px;
  69. border:1px solid #ffff66; /*CHANGE THE BORDER COLOR AROUND THE IMAGES*/
  70. }
  71.  
  72. img:hover {
  73. opacity:0.8;
  74. }
  75.  
  76. #info {
  77. margin-top:20px;
  78. }
  79.  
  80. #title {
  81. font-size:50px;
  82. height:45px;
  83. line-height:58px;
  84. background-color:#ffff66; /*CHANGE THE COLOR OF THE TITLE BACKROUND*/
  85. width:425px;
  86. padding:5px;
  87. text-align:right;
  88. font-family:'Carrois Gothic SC';
  89. font-weight:bold;
  90. }
  91.  
  92. #text {
  93. margin-left:10px;
  94. margin-bottom:10px;
  95. text-align:left;
  96. font-family:'Metrophobic'; /*CHANGE THE FONT OF THE TEXT*/
  97. width:640px;
  98. font-size:13px;
  99. line-height:110%;
  100. height:160px;
  101. overflow-y:auto;
  102. }
  103.  
  104. #text a {
  105. text-decoration:none;
  106. color:#000; /*CHANGE THE COLOR OF A LINK IN THE TEXT BOX*/
  107. font-weight:bold;
  108. }
  109.  
  110. #text a:hover {
  111. color:#ffff66; /*CHANGE THE COLOR OF A LINK IN THE TEXT BOX WHEN YOU HOVER*/
  112. -webkit-transition: all 0.5s ease;
  113. -moz-transition: all 0.5s ease;
  114. transition: all 0.5s ease;
  115. }
  116.  
  117. #credit {
  118. position:fixed;
  119. right:8px;
  120. bottom:8px;
  121. }
  122.  
  123. #credit a {text-decoration:none; color:#000;
  124. -webkit-transition:0.5s;
  125. -moz-transition:0.5s;
  126. -ms-transition:0.5s;
  127. -o-transition:0.5s;
  128. }
  129. #credit a:hover {color:#ffff66;}
  130.  
  131.  
  132. </style>
  133.  
  134. <body background="https://24.media.tumblr.com/88b9258779eb38d4ded379c50049ed9a/tumblr_n23pvlZnIR1sze9kyo4_r3_1280.png"> <!--if you'd like to change the background image, change what's in the quotes over there-->
  135.  
  136. <div id="everything">
  137.  
  138. <div id="images">
  139.  
  140. <!--FIRST LINK-->
  141. <a href="/"> <!--change where the link leads-->
  142. <div id="image">
  143. <img src="http://25.media.tumblr.com/6f9b3b4f2c052d1bbae16c4d2026454b/tumblr_n1vji6zRR11rjunvyo2_250.gif" /> <!--change the image source-->
  144. <div id="ft">home</div> <!--and change what the text when you hover reads-->
  145. </div>
  146. </a>
  147. <!--FIRST LINK CODE END-->
  148.  
  149. <!--ANOTHER LINK-->
  150. <a href="/ask"> <!--change the url-->
  151. <div id="image">
  152. <img src="http://25.media.tumblr.com/4db48997745cb3cdfb61f54610296dc4/tumblr_mwrkqfA9mu1srdb0to1_250.gif" /> <!--change the image-->
  153. <div id="ft">ask</div> <!--change the text-->
  154. </div>
  155. </a>
  156. <!--END-->
  157.  
  158. <!--ANOTHER LINK-->
  159. <a href="http://tumblr.com/dashboard"> <!--change the url-->
  160. <div id="image">
  161. <img src="http://31.media.tumblr.com/c9a5a10a1bd04659758e47f21b884d97/tumblr_mwlglhSOkq1rje0wao3_250.gif" /> <!--change the image-->
  162. <div id="ft">dash</div> <!--change the text-->
  163. </div>
  164. </a>
  165. <!--END-->
  166.  
  167. <!--if you'd like to add another link, copy&paste the specified link code above here-->
  168. </div>
  169.  
  170. <div id="info">
  171. <div id="title">About Me</div> <!--your title-->
  172.  
  173. <div id="text">
  174.  
  175. <p>Here's where your text goes! Write whatever you want, and as much as you want. A handy-dandy scrollbar, like the one to the right, will appear if you use up your space. Use a p tag or a line break to go onto a new line. So here's a paragraph.</p>
  176. <p>A new paragraph.</p>
  177. <p>Another paragraph with a <br />
  178. single line break here.
  179. </p>
  180. <p>You can also <b>bold,</b> <i>italic,</i> <u>and underline.</u> You can even <a href="http://SOMEURL.com">link!</a> (If you want to change the color of the link, search up "change the color of a link in the text box." If you want to change the look of other things, simply look up "change the" and you should be able to find all sorts of notes for changing colors, images, and fonts. And if you have trouble picking a color, go <a href="http://colorpicker.com">here!</a></p>
  181. <p>Enjoy this page, lovelies. And follow the rules: don't steal, redistribute, or remove the credit. Thanks in advance.</p>
  182.  
  183. </div>
  184. </div>
  185. </div>
  186.  
  187. <div id="credit"><a title="credit" href="http://primrosetylers.tumblr.com">✿</a></div>
  188.  
  189. </body>
  190. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement