<html>
<head>
<style>
a:link {
text-decoration:none;
font-family:calibri;
color:green;
}
a:visited {
color: blue;
}
a:hover {
color: pink;
text-decoration:underline;
}
a:active {
color: tomato;
text-decoration:underlined;
background-color:yellow;
}
</style>
</head>
<body>
<p><a href="https://www.tutorialbrain.com/" target="_blank">Link to Tutorialbrain</a></p>
<p>Notice the link at each phase when you take action using your mouse</p>
</body>
</html>