Guest
Private paste!

Untitled

By: a guest | Apr 25th, 2010 | Syntax: HTML | Size: 0.38 KB | Hits: 110 | Expires: Never
Copy text to clipboard
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. body {color:red;}
  5. h1 {color:#00ff00;}
  6. p.ex {color:rgb(0,0,255);}
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <h1>This is heading 1</h1>
  12. <p>This is an ordinary paragraph. Notice that this text is red. The default text-color for a page is defined in the body selector.</p>
  13. <p class="ex">This is a paragraph with class="ex". This text is blue.</p>
  14. </body>
  15. </html>