Advertisement
Guest User

Untitled

a guest
Jul 15th, 2013
2,255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p
  6. {
  7. color:magenta;
  8. text-align:center;
  9. }
  10. h2
  11. {
  12. color:blue;
  13. text-align:center;
  14. }
  15. #W3link
  16. {
  17. color:green;
  18. text-align:center;
  19. }
  20. #Para
  21. {
  22. color:brown;
  23. text-align:center;
  24. </style>
  25. </head>
  26.  
  27. <body>
  28. <h2> CSS is pretty cool</h2>
  29. <p>Yup, magenta works</p>
  30. <p id="Para" > Just testing ID's </p>
  31. <a id="W3link" href="http://www.w3schools.com/css/css_syntax.asp"> This is The code that I built this off of </a>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement