disable a link bootstrap code example
Example 1: bootstrap a link disabled
<a class="btn disabled" href="#">Disabled link</a>
Example 2: how to disable a link
<style>
.isDisabled {
color: currentColor;
cursor: not-allowed;
opacity: 0.5;
text-decoration: none;
}
</style>
<a class="isDisabled" href="https://unfetteredthoughts.net">Disabled Link</a>