Author -  Sai gowtham

Creating an Html Button that acts as a Link

In this tutorial, 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:

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

Second way

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

<a href="https://google.com" class="btn">Google</a>
.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.

<button onclick="location.href='https://google.com'">Google</button>

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

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY