Using the anchor element and the download
attribute, it is easy to create a link for downloading files from a website server.
syntax:
<a href="filname" download>
example:
<a href="tutorial" download>TUTORIAL DOWNLOAD</a>
result:
TUTORIAL DOWNLOAD
It is not necessary to specify an extension for the file type, the browser does this automatically.
If we specify a value for the download attribute, we can set the new filename of the downloaded file.
example:
<a href="tutorial" download="HTML tutorial">TUTORIAL DOWNLOAD</a>
RADIO