Coding Wiki
Most Common Coding Questions
Find answers to popular programming questions and level up your coding skills
Html anchor tag without underline
Learn how to remove the underline from an HTML anchor tag.
Answer:
In HTML, you can remove the underline from an anchor tag by setting the "style" attribute to "text-decoration: none;".
html
<a style="text-decoration: none;">Link</a>