“кнопка HTML по ссылке” Ответ

href на кнопке

<button onclick="window.location.href='/page2'">Continue</button>
STIFLER

Ссылка на кнопку HTML

<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Arab Fire Shaman

Buton html href

<!-- if you are on Window : --> 
<button onclick="window.location.href='page2.html'">
  Button
</button>

<!-- if you are on linux or macOS : -->
<button onclick="location.href='page2.html'">
  Button
</button>
Pr.Gaultier

кнопка HTML по ссылке

<a href="https://www.google.com">
  <button>Go to Google</button>
</a>
hateschoollovecoding

Добавить ссылку за кнопку в HTML

<!DOCTYPE html>
<html>
   <head>
      <title>Title of the document</title>
   </head>
   <body>
      <form>
         <input type="button" onclick="window.location.href = 'https://www.w3docs.com';" value="w3docs"/>
      </form>
   </body>
</html>
Aggressive Anaconda

Как сделать ссылку на кнопку

<button type="button" onclick="window.location.href='the link you want the button to take you to'">Click me</button>
Doubtful Dunlin

Ответы похожие на “кнопка HTML по ссылке”

Вопросы похожие на “кнопка HTML по ссылке”

Больше похожих ответов на “кнопка HTML по ссылке” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования