При нажатии на кнопку должен качаться файл.
Вот сам код:
spoiler<div class="splash">
<img class="splash__illustration" src="img/illustration-main.png" alt="main-illustration"/>
<div class="splash__textblock">
<h1 class="splash__title"><strong>TEXT!</strong> text <strong>botQubes</strong></h1>
<p class="splash__text">text text </p>
<a class="splash__button" href="page.html" target="_blank"><span class="splash__button--helper"></span>СКАЧАТЬ*</a>
В данном виде при нажатии на кнопку переходит на страницу page.html
Я попробовал два варианта для изменения параметра при нажатии на кнопку:
1) Изменил href на download
spoiler<div class="splash">
<img class="splash__illustration" src="img/illustration-main.png" alt="main-illustration"/>
<div class="splash__textblock">
<h1 class="splash__title"><strong>TEXT!</strong> text <strong>botQubes</strong></h1>
<p class="splash__text">text text </p>
<a class="splash__button" download="page.txt" target="_blank"><span class="splash__button--helper"></span>СКАЧАТЬ*</a>
2) Добавил
spoiler<div class="splash">
<img class="splash__illustration" src="img/illustration-main.png" alt="main-illustration"/>
<div class="splash__textblock">
<h1 class="splash__title"><strong>TEXT!</strong> text <strong>botQubes</strong></h1>
<p class="splash__text">text text </p>
<form action="test.txt" download> <a class="splash__button" download="page.txt" target="_blank"><span class="splash__button--helper"></span>СКАЧАТЬ*</a></form>
Оба варианта не работают, в чем может быть причина?