HTML Download
What is Download in HTML?
HTML video Download element used to download a video on a web page.
HTML audio Download element used to download a audio on a web page.
The HTML Audio Download Element
To download a audio in HTML, use the <audio controls="controls" controls="download"> element:
Example
<!DOCTYPE html>
<html>
<head>
<title>Audio Example</title>
</head>
<body>
<audio controls>
<source src="example.ogg" type="audio/mp3">
Your browser does not support the audio element.
</audio>
<br><br>
<a href="example.ogg" download>Download Audio</a>
</body>
</html>
Try it Yourself »