<html>
<head>
<style>
a:visited {
color: pink;
}
</style>
</head>
<body>
<h1>Demo of the :visited selector</h1>
<p>The :visited selector style links to pages you have already visited:</p>
<a href="https://www.w3schools.com">W3Schools Home</a><br>
<a href="https://www.w3schools.com/html/">W3Schools HTML Tutorial</a><br>
<a href="https://www.w3schools.com/css/">W3Schools CSS Tutorial</a>
</body>
</html>