Web Tools Table Maker3schools TranslateImage CompressorFavicon Icon GeneratorCrop & Resize Image
Apu
Apu November 23, 2022 › #HowTo #Html

How to make a button link to another page in HTML

To make a button link to another page in HTML, you can simply use the <button> element inside the anchor (<a>) element.

Example : the following example creates a button link to another webpage. #
<a href="https://example.com">
  <button>Click Me</button>
</a>

In the above example, we have added a <button> element inside an anchor element.

save
listen
AI Answer
Write Your Answer
loading
back
View All