Advertisement
milkshake

Untitled

Jun 29th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. <style>
  2.  
  3. #image {
  4. -webkit-background-size: cover;
  5. -moz-background-size: cover;
  6. -o-background-size: cover;
  7. background-size: cover;
  8. }
  9.  
  10. #content {
  11. position: absolute;
  12. top: 1200px;
  13. margin-left: 50px;
  14. color: #121212;
  15. }
  16.  
  17. .image1{
  18. width: auto;
  19. height: 100px;
  20. padding: 20px;
  21. }
  22.  
  23. </style>
  24.  
  25. <div id='image'>
  26. <img src='http://i.imgur.com/GTNm3j7.jpg' width='100%' />
  27. <img src='http://i.imgur.com/yLSx4Hy.png' width='100%' />
  28. </div>
  29.  
  30. <div id='content'> <!-- A content section -->
  31. <h2>
  32. My Title!
  33. </h2>
  34. <p>
  35. Write something here!
  36. </p>
  37.  
  38. <hr /> <!-- A LINE -->
  39.  
  40. <h4>
  41. A smaller title!
  42. </h4>
  43.  
  44. <p>
  45. Write something for title 2 here!
  46. </p>
  47.  
  48. <hr />
  49.  
  50. <h4>
  51. <u>
  52. My Weapon of Choice
  53. </u>
  54. </h4>
  55.  
  56. <img class='image1' src='http://i.imgur.com/GTNm3j7.jpg' alt='My Mastered Weapon' />
  57.  
  58. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement