Guest User

Untitled

a guest
Jan 6th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5. <head>
  6.  
  7. <meta charset="UTF-8" />
  8.  
  9. <title>Home</title>
  10.  
  11. <style>
  12.  
  13. body,html
  14. {
  15. width:99.7%;
  16. height:99%;
  17. }
  18.  
  19. body {
  20. background-image: url('images/background.jpg');
  21. background-repeat:no-repeat;
  22. background-size: 101%;
  23. }
  24.  
  25. #button_home {
  26. margin-top: 3%;
  27. margin-left: 2.5%;
  28. margin-bottom: 0%;
  29. margin-right: 0%;
  30. }
  31.  
  32. #button_css {
  33. margin-top: 2%;
  34. margin-left: 2.5%;
  35. margin-bottom: 0%;
  36. margin-right: 0%;
  37. }
  38.  
  39. #banner {
  40. margin-left: 32%;
  41. margin-top: 1.5%;
  42. margin-bottom: 0.5%;
  43. margin-right: 0%;
  44. }
  45.  
  46. #content {
  47. margin-left: 32%;
  48. margin-top: -11%;
  49. margin-bottom: 0%;
  50. margin-right: 0%;
  51. }
  52.  
  53. </style>
  54.  
  55. </head>
  56.  
  57. <body>
  58.  
  59. <img id="banner" src="images/banner.jpg" alt="Banner"/>
  60.  
  61. <div>
  62. <img id="button_home" src="images/home.jpg" alt="Home"
  63. onmouseover="this.src='images/home-rollover.jpg';"
  64. onmouseout="this.src='images/home.jpg';"/>
  65. </div>
  66.  
  67. <div>
  68. <img id="button_css" src="images/css.jpg" alt="Home"
  69. onmouseover="this.src='images/css-rollover.jpg';"
  70. onmouseout="this.src='images/css.jpg';"/>
  71. </div>
  72.  
  73. <img id="content" src="images/content.jpg" alt="Content"/>
  74.  
  75. </body>
  76.  
  77. </html>
Add Comment
Please, Sign In to add comment