Advertisement
here2share

HTML css of sorts

Aug 13th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.54 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6.     margin-left: 200px;
  7.     background: #5d9ab2 url("http://i.imgur.com/tDWZK5p.png") no-repeat top left;
  8. }
  9.  
  10. .center_div {
  11.     border: 5px solid gray;
  12.     margin-left: auto;
  13.     margin-right: auto;
  14.     width: 90%;
  15.     background-color: #d0f0f6;
  16.     text-align: left;
  17.     padding: 8px;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22.  
  23. <div class="center_div">
  24.   <h1>Hello World!</h1>
  25.   <p>In this example, note that the tree image itself does not have a background overlay</p>
  26. </div>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement