how to make pdf download in html code example
Example 1: how do i set a pdf to be download link in html
<a href="./directory/yourfile.pdf" download="newfilename">Download the pdf</a>
Example 2: html download link
<a href="path/to/file.ext" download rel="noopener noreferrer" target="_blank">
Download File
</a>
<!-- Please keep in mind that the dowload attribute is not supported by IE11. This why we need a target="_blank" fallback -->