Html Button Link W3schools Code Example


Example 1: html button link


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

Example 2: html button with link


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

Example 3: html button with link


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

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy