I have an HTML file where there are some download links, but some links are not downloading themselves but opening in the browser itself, such as .txt and .mp3 files, files like .rar and .zip are downloaded directly, like do I make sure all files are downloaded directly (not being played)?
OBS: Chrome last version.
<html>
<head>
<title>
Downloads
</title>
</head>
<body>
<a href="teste.txt">TXT</a>
<a href="teste.rar">RAR</a>
<a href="teste.mp3">MP3</a>
</body>
</html>