Logo - ProgrammingHead

CSS - Remove Underline From A LINK

To remove underline from a link in HTML, we can use CSS text-decoration property. By setting it to none will remove all the text decorations like underline from the text.

CSS - Remove Underline From A LINK [Updated]

Removing Underline using External, Internal and In-Line CSS

There are multiple ways to use CSS with HTML document, and we will use text-decoration property with all of them to remove the Underline from the LINK.

Removing under line using External CSS

Removing under line using Internal CSS

Removing underline using In-Line CSS

To use CSS proprties text-decoration without Internal or External CSS, we can use In-Line CSS.
Where by using style="" atttribute, we can use any CSS property.