How to remove the underline from a link

Nabila AbubakarNabila Abubakar
1 min read

Removing the underline from a link is very simple.

HTML

<a href="url">link text</a>

CSS

a{

text-decoration: none;

}

You can also add other properties. For example, color.

a{

text-decoration: none;

color: white;

}

0
Subscribe to my newsletter

Read articles from Nabila Abubakar directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Nabila Abubakar
Nabila Abubakar

I'm a self-taught front-end web developer on my way to full-stack. Currently learning Django and beeware.