To make an open PDF in the browser for viewing instead of downloading. You should not use the DOWNLOAD attribute in the <a> tag.
for downloading
<a href="a.pdf" download>download</a>
for not downloading
<a href="a.pdf"> view Pdf </a>