<html lang="en">
<head>
<meta charset="utf-8">
<title>Anchor Pseudo-classes example</title>
<style>
a:link {
color: blue;
}
a:visited {
text-decoration: none;
}
</style>
</head>
<body>
<p>Visit <a href="https://readytocode.net/">Laravel Blog</a></p>
</body>
</html>