After using a button in Bootstrap 4, it appears as follows:
https://i.sstatic.net/laGLo.png
<button type="button" class="btn btn-primary" target="_blank">Download</button>
On the other hand, when I substitute an anchor with the same button styling, it displays like this:
https://i.sstatic.net/6BbO8.png
<a type="button" class="btn btn-primary" target="_blank">Download</a>
I'm looking to achieve a flat button style for my anchor element. Any suggestions on how to accomplish this?