HTML: Use the anchor element download attribute to prompt the user to download a resource
Last updated: 12th May 2020The download attribute on an anchor tag pops up a Save dialog to download the resource, instead of navigating to it. e.g.
<a download href="cat.jpg">
Download cat pic
</a>
Using an attribute value, such as download="cat-1.jpg"
will also suggest a filename in the Save dialog.