Advertisement
kyujouz

embed link things

Oct 2nd, 2021
2,072
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. /* unvisited link */
  6. a:link {
  7. text-decoration: none;
  8. color: white;
  9. }
  10.  
  11. /* visited link */
  12. a:visited {
  13. text-decoration: none;
  14. color: white;
  15. }
  16.  
  17. /* mouse over link */
  18. a:hover {
  19. text-decoration: none;
  20. color: #E6F4FF;
  21. }
  22.  
  23. /* selected link */
  24. a:active {
  25. text-decoration: none;
  26. color: #E6F4FF;
  27. }
  28. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement