xxxxxxxxxx
<a href="myFile.png" download>Click to download</a>
with (download) attribute
xxxxxxxxxx
<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 -->
xxxxxxxxxx
<a href="/path/to/file.txt" download="file_name">download</a>
Value for download attribute is the name for downloaded file.
<a href="/path/to/file.txt" download>download</a>
It is optional.