Guest User

Untitled

a guest
Oct 20th, 2017
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Different Color Texts</title>
  5. <style>
  6. body{background-color:black}
  7. h1{color:lime}
  8. </style>
  9. </head>
  10. <body>
  11. <h1>Lime Text</h1>
  12. <h1><a style="color:red">Red Text</a></h1>
  13. <h1><a style="color:orange">Orange Text</a></h1>
  14. <h1><a style="color:yellow">Yellow Text</a></h1>
  15. <h1><a style="color:green">Green Text</a></h1>
  16. <h1><a style="color:blue">Blue Text</a></h1>
  17. <h1><a style="color:purple">Purple Text</a></h1>
  18. <h1><a style="color:grey">Grey Text</a></h1>
  19. <h1><a style="color:white">White Text</a></h1>
  20. </body>
  21. </html>
Add Comment
Please, Sign In to add comment