found on W3schools.com site an HTML5 attribute that may help you: download. Use it as follows
<a href="/images/myw3schoolsimage.jpg" download> or
<a href="/images/myw3schoolsimage.jpg" download="w3logo"> to have a local name different from the original one.
Probably you should combine it with the type attribute, specifying a type like:
<a type="application/octet-stream" href="clip.mp3">Download here</a>
found on W3schools.com site an HTML5 attribute that may help you: download. Use it as follows
<a href="/images/myw3schoolsimage.jpg" download> or
<a href="/images/myw3schoolsimage.jpg" download="w3logo"> to have a local name different from the original one.
Probably you should combine it with the type attribute, specifying a type like:
<a type="application/octet-stream" href="clip.mp3">Download here</a>