<!DOCTYPE html>
<html>
<head>
<title>CSS hyperlink</title>
<style type="text/css">
a:link {color:#e14d43;} /* normal link */
a:visited {color:#50afe5;} /* visited link */
a:hover {color:#fe0000;} /* mouse over link */
a:active {color:#fe0000} /* selected link */
</style>
</head>
<body>
<div>Click here to open <a href="../tutorial.php" >CSS example</a> page.</div>
</body>
</html>