coloring the links in CSS

By: Prof. Dr. Fazal Rehman | Last updated: March 3, 2022

How to color the links in CSS?

Example:

<html>
<head>
<style>
/* link is not visited still */
a:link {
color: green;
}/* link is visited before */
a:visited {
color: blue;
}/* when mouse reached theĀ link */
a:hover {
color: pink;
}/* Link is opened at the current moment */
a:active {
color: red;
}
</style>
</head>
<body><p><a href=”t4tutorials.html” target=”_blank”>Click here for T4T</a></p>
</html>

 

 

Leave a Comment

All Copyrights Reserved 2025 Reserved by T4Tutorials