“Botão HTML com HREF” Respostas de código

href em um botão

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

Link do botão HTML

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

BASTON 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

botão como href

<button onclick="location.href='http://www.example.com'" type="button">
         www.example.com</button>
Strange Skylark

Botão HTML com link

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

Botão HTML com HREF

<form method="get" action="/page2">
    <button type="submit">Continue</button>
</form>
Energetic Eland

Respostas semelhantes a “Botão HTML com HREF”

Perguntas semelhantes a “Botão HTML com HREF”

Mais respostas relacionadas para “Botão HTML com HREF” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código