When I try to initiate a download by specifying the filename, instead of downloading, it opens in a new tab. The code snippet below shows what I am currently using. Additionally, I am working on Chrome Browser.
<!DOCTYPE html>
<html>
<body>
<p>
<a href="someFile.png" download="ID">
<button type="button">Download</button>
</a>
</body>
</html>