PSEUDO CLASS
Run
<!DOCTYPE html> 
<html> 
<head> 
    <title>CSS Pseudo-class</title> 
    <style> 
    a{
    	font-size: 30px;
    }
  
    a:visited{ 
        color: purple;
    } 
  
    </style> 
</head> 
  
<body> 
     <div>
     	<a href="https://www.studytonight.com/" target="_blank">Click Me!</a>
     </div>
</body> 
</html>