here2share

HTML bg-image (patterned)

Aug 13th, 2016
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. body {
  6.     color: white;
  7.     background-image: url("http://i.imgur.com/qG5ht0h.png");
  8. }
  9. div {
  10.     background-color: purple;
  11.     text-align: center;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16.  
  17. <h1>Hello World!</h1>
  18. <div>
  19. <br>
  20. <p>This page has an image as the background!</p>
  21. <br>
  22. </div>
  23.  
  24. </body>
  25. </html>
Add Comment
Please, Sign In to add comment