<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="../index.html">Visit W3Schools.com!</a>
<p>A customized a element (changed text-decoration and color):</p>
<a style="text-decoration:none;color:red;" href="../index.html">Visit W3Schools.com!</a>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_default_a by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 13:18:32 GMT -->
</html>