Hyperlink in html (anchor tag) without a underline


⛏️ text-decoration:none

By default when we create a hyperlink we have an underline to it, If you have an anchor tag in HTML, and you do not want it to have an underline, then it is achievable using text-decoration CSS attribute.

A link with an underline.

Code:

<a href="http://code2care.org">http://code2care.org</a>

Result:

A hyperlink without a underline - by using: text-decoration:none

Code:

<a href="http://code2care.org" style="text-decoration:none">http://code2care.org</a>

Result:

http://code2care.org




















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap