Advertisement
Guest User

Untitled

a guest
Jan 10th, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. HTML:
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <link type="text/css" rel="stylesheet" href="stylesheet.css"/>
  6. <title>Home</title>
  7. </head>
  8. <body>
  9. <div id="whitetop">
  10. </div>
  11. <div id="whitebot">
  12. </div>
  13. <img src="earth2.jpg"/ id="earth">
  14. </body>
  15. </html>
  16.  
  17.  
  18. CSS:
  19. html {
  20. height: 100%;
  21. background-color: #272C34;
  22. margin: 0%;
  23. padding: 0%;
  24. }
  25.  
  26. body{
  27. height: 100%;
  28. position: static;
  29. margin: 0%;
  30. padding: 0%;
  31. }
  32.  
  33. #whitetop {
  34. width: 100%;
  35. height: 4%;
  36. position: absolute;
  37. background-color: #E8E8E7;
  38. margin-top: 10%;
  39. margin-left: 0%;
  40. margin-right: 0%;
  41. margin-bottom: -10%;
  42. padding: 0%;
  43. z-index: 1;
  44. }
  45.  
  46. #whitebot {
  47. width: 100%;
  48. height: 30%;
  49. position: absolute;
  50. background-color: #E8E8E7;
  51. margin-top: 32%;
  52. margin-left: 0%;
  53. margin-right: 0%;
  54. margin-bottom: -32%;
  55. padding: 0%;
  56. z-index: 1;
  57. }
  58.  
  59. #earth {
  60. width: 100%;
  61. height: 20%;
  62. position: absolute;
  63. margin-top: 10%;
  64. margin-left: 0%;
  65. margin-right: 0%;
  66. margin-bottom: -10%;
  67. z-index: 0;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement