how to remove anchor tag underline in bootstrap code example
Example 1: bootstrap link no underline
<a href="#" class="text-decoration-none">
<!-- That is all -->
</a>
Example 2: remove underline from a tag
<a style="text-decoration: none">my link</a>