Share Pastebin
Guest
Private paste!

Untitled

By: a guest | Apr 25th, 2010 | Syntax: HTML | Size: 0.34 KB | Hits: 116 | Expires: Never
Copy text to clipboard
  1. <html>
  2. <head>
  3. <style type="text/css">
  4. p.uppercase {text-transform:uppercase;}
  5. p.lowercase {text-transform:lowercase;}
  6. p.capitalize {text-transform:capitalize;}
  7. </style>
  8. </head>
  9.  
  10. <body>
  11. <p class="uppercase">This is some text.</p>
  12. <p class="lowercase">This is some text.</p>
  13. <p class="capitalize">This is some text.</p>
  14. </body>
  15. </html>