Create download link for music or video

audio, browser, href, html, video

Solution

You can try this. I've tried it, and it's working for me.

<a href="link/to/your/download/file" download> Download link </a>

Problem

i have html file with video and audio file. and i want to links file such as mp3 or mp4 using tag a href and download that file. My video and audio file stored in same folder with my html file. i have tried this code : ``` <a href="music/hermin.mp3" target="_blank">download</a> ``` but not downloaded my file, just open a new tab with a play pause controls in the center. from this question i get to add "download" to my href tag, but it is for modern browser. How about for old browser? how i can create a download link for my video/audio in html file and support for all browser (not only for modern browser)? thanks in advance and sorry for my bad English.

Original source

Related problems