<html>
<head>
<style>
a:link {
color: blue;
}
a:visited {
color: orange;
}
a:hover {
color: tomato;
}
a:active {
color: green;
}
</style>
</head>
<body>
<h2>Example of link colors</h2>
<h4>Universal color of link will be blue </h4>
<h4>Visited color of link will be orange </h4>
<h4>Hover over color of link will be tomato </h4>
<h4>Active color of link will be green.The moment you click the link is the active state </h4>
<a href="https://TutorialBrain.com/" target="_blank">Welcome to TutorialBrain</a>
</body>
</html>