“botón html con href” Código de respuesta

href en un botón

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

enlace del botón 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

botón como href

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

botón HTML con enlace

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

botón html con href

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

Respuestas similares a “botón html con href”

Preguntas similares a “botón html con href”

Más respuestas relacionadas con “botón html con href” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código