remove underline from link bootstrap 5 code example
Example 1: bootstrap remove underline a
<a href="#" class="text-decoration-none">Non-underlined link</a>
Example 2: bootstrap link remove underline
a:hover, /* OPTIONAL*/
a:visited,
a:focus
{text-decoration: none !important;}