Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html button with link

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

html button link

<button onclick="window.location='(link)'"> Click this </button>
Comment

How to create an HTML button that acts like a link

<!-- VIA HTML -->

<form action="https://google.com">
    <input type="submit" value="Go to Google" />
</form>

<!-- VIA CSS -->

<a href="https://google.com" class="button">Go to Google</a>
a.button {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;

    text-decoration: none;
    color: initial;
}


<!-- VIA JAVASCRIPT -->

<input type="button" onclick="location.href='https://google.com';" value="Go to Google" />
Comment

html button with href

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

PREVIOUS NEXT
Code Example
Html :: change text direction in html 
Html :: BORDERS WITH TEXT IN IT 
Html :: input type for contact no 
Html :: bootstrap background color 
Html :: bootstrap 5 input group 
Html :: how to center vertically in bootstrap col 
Html :: how to change innerhtml color 
Html :: youtube embed autoplay not working 
Html :: How to edit an HTML file 
Html :: city of hamilton 
Html :: ouvrir dans nouvelle page html 
Html :: nuxt title page 
Html :: hyper text markup language 
Html :: vscode format html on save 
Html :: tailwind ul list type 
Html :: click on a button and start downloading data html 
Html :: how to display the first frame of the video element in html 
Html :: img center alt text 
Html :: set span text 
Html :: where should favicon.ico be placed in flask app 
Html :: difference between xhtml and html 
Html :: bootstrap cdn 
Html :: how to write superscript in markdown 
Html :: input type=number 01 
Html :: change font size of input text html 
Html :: image as banner html 
Html :: jsp variable in html 
Html :: theme color in html 
Html :: datetime local input 
Html :: bulma fullheight 
ADD CONTENT
Topic
Content
Source link
Name
2+8 =