Advertisement
Guest User

HTML/CSS

a guest
Oct 24th, 2013
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. CCS:
  2.  
  3. body
  4. {
  5. background-image:url('backround.jpg');
  6. background-repeat:repeat-y;
  7. background-position:center;
  8. background-color:#00CCFF;
  9. }
  10. #Copyright
  11. {
  12.   position: relative;
  13.   top: 800px;
  14.   left: 600px;
  15. }
  16. #Text
  17. {
  18. Margin-left: 600px;
  19. color:#2FFF00;
  20. }
  21.  
  22. HTML:
  23.  
  24. <html>
  25. <head>
  26. <link rel="stylesheet" href="css.css" type="text/css" />
  27. <title> Test! </title>
  28. </head>
  29. <body>
  30. <center><h1>OVERSKIFT!</h1></center>
  31. <div id="Text">
  32. <p>Hej</p>
  33. <p>Woop</p>
  34. </div>
  35. <center><p>Davs</p></center>
  36. <div id="Copyright">
  37. &copy Emil Olesen
  38. </div>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement