By using link
selector we can add style to the unvisited links.
<style> a:link { background-color: pink; } </style> <body> <a href="http://www.techfunda.com" title="TechFunda.com">TechFunda.com</a> | <a href="http://www.dotnetfunda.com" title="DotNetFunda.com">DotNetFunda.com</a> </body>
In the above code snippet we have given style to the link in the <a>
tag. It represents the unvisited links on the web page.
OUTPUT
Views: 3172 | Post Order: 29