How to make a button open a different page when clicked in html.

joemama123

Your Average Roblox Game Dev

Posted on January 26, 2024

How to make a button open a different page when clicked in html.

step 1 - * Open up your coding software.
step 2 - Create a new html file.
step 3 - Put in the following code below -

<html>
   <body>
      <a href="Your_Link_Here" <!-- make sure to put https:/ -->
         <button>Your Text Here</button>
      </a>
   </body>
</html>
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
joemama123
Your Average Roblox Game Dev

Posted on January 26, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related