How to remove the underline from a link
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;
}
beela303.hashnode.dev1 min read