Creating an Html Button that acts as a Link

Creating an Html Button that acts as a Link

In this post we will give you information about Creating an Html Button that acts as a Link. Hear we will give you detail about Creating an Html Button that acts as a LinkAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to create an html button that acts as a link, so that when we click on a button it will redirect to another page in a site.

First way

We can achieve this by wrapping a button element with an anchor <a> tag.

Example:

&lt;a href="https://google.com"&gt;&lt;button&gt;Google&lt;/button&gt;&lt;/a&gt;

Second way

Style the anchor <a> tag that looks like a button.

&lt;a href="https://google.com" &gt;Google&lt;/a&gt;
.btn{    padding: .5rem;    background: orange;    text-decoration: none;    color:black;}

Third way

Adding an inline (onclick) event handler to the button element with a location.href property.

&lt;button onclick="location.href='https://google.com'"&gt;Google&lt;/button&gt;

The value of a location.href property will be the another page url (you need to redirect) like https://google.com.

Hope this code and post will helped you for implement Creating an Html Button that acts as a Link. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US