How to Remove Underline from Link in HTML?

Use CSS: `a { text-decoration: none; }`

Apply it inline: `Link`

Apply it in a stylesheet: `Link`

Remove underline on hover too: `a:hover { text-decoration: none; }`

Remove underline for a specific link with a class: `.no-underline { text-decoration: none; }`

Use the class in HTML: `Link`

Suggested for You

Trending Today