There three ways
HTML way => You can set # in href attribute.
<a href="#">About Us</a>
JavaScript way => You can call a void JavaScript function which leads to disabled click. Link will not navigate or reload page
<a href="javascript:void(0)">Home</a>
CSS way => You can use following CSS to disable links
<a style="pointer-events: none; cursor: default;" href="home.html">Home</a>
Thanks