Share Pastebin
Guest
Private paste!

Untitled

By: a guest | Apr 25th, 2010 | Syntax: HTML | Size: 0.37 KB | Hits: 115 | Expires: Never
Copy text to clipboard
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. h1
  5. {
  6. background-color:#6495ed;
  7. }
  8. p
  9. {
  10. background-color:#e0ffff;
  11. }
  12. div
  13. {
  14. background-color:#b0c4de;
  15. }
  16. </style>
  17. </head>
  18.  
  19. <body>
  20.  
  21. <h1>CSS background-color example!</h1>
  22. <div>
  23. This is a text inside a div element.
  24. <p>This paragraph has it's own background color.</p>
  25. We are still in the div element.
  26. </div>
  27.  
  28. </body>
  29. </html>