Edit This Code:
See Result »
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
style
>
a
{
text-decoration
:
none
;
}
<
/style
>
<
/head
>
<
body
>
<
p
>
A link with no underline:
<
a
href
="../index.html"
>
W3Schools.com
<
/a
>
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <style> a { text-decoration: none; } </style> </head> <body> <p>A link with no underline: <a href="../index.html">W3Schools.com</a></p> </body> </html>
Result:
Privacy Policy