Im working on a simple download Webside, but instead od downloading the mp3 it is opened in the browser. How can I change this?
<!doctype html>
<head>
<link rel="stylesheet" href="css\stylesheet.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Test Webseite</title>
</head>
<style>
</style>
<body>
<h1>Test</h1>
<p>Test
</p>
<a href="download\audio.mp3" download="audio.mp3" download="true">Download link</a>
</body>
Thanks for the help :)