Advertisement
here2share

HTML bg-colors

Aug 13th, 2016
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.37 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. h1 {
  6.     background-color: green;
  7. }
  8.  
  9. div {
  10.     background-color: lightblue;
  11. }
  12.  
  13. p {
  14.     background-color: yellow;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19.  
  20. <h1>CSS background-color example!</h1>
  21. <div>
  22. This is a text inside a div element.
  23. <p>This paragraph has its own background color.</p>
  24. We are still in the div element.
  25. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement