Do not use an <a>
element if you do not want this behaviour. You cannot change it.
Instead, what you could do is have a <p>
that uses the onclick
event to send the user to your URL using JavaScript.
A working code might look like:
<p onclick="window.location.href='http://www.example.com'">Press here!</p>