<html>
<head>
<style>
/* Default CSS Values */
a:link, a:visited {
color: /* browser's internal value */;
text-decoration: underline;
cursor: auto;
}
a:link:active, a:visited:active {
color: /* browser's internal value */;
}
</style>
</head>
<body>
<p>By default, an a element is displayed like this:</p>
<a href="https://www.w3schools.com">Visit W3Schools.com!</a>
<p>A customized a element (changed text-decoration and color):</p>
<a style="text-decoration:none;color:red;" href="https://www.w3schools.com">Visit W3Schools.com!</a>
</body>
</html>