Remove the underline from the link. - HTML CSS CSS

HTML CSS examples for CSS:Quiz

Description

Remove the underline from the link.

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<head>
<style>
a {<!--from w w w  .  j a v a2 s. c  om-->
    text-decoration: none;
}
</style>
</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
<p><a href="css_text.asp">CSS text tutorial</a></p>

</body>
</html>

Related Tutorials