How to create HTML push-button link

5:45:00 AM | , ,

 The code below is entered between the <body> and </body> HTML tags.
Code #1 button without style
<form>
<input Type='BUTTON' Value='Homepage' Onclick="window.location.href='http://www.ns-services.blogspot.com/'">
</form>
Code #2 button with any style you like
<form>
<input class='btn' Type='BUTTON' Value='Homepage' Onclick="window.location.href='http://www.ns-services.blogspot.com/'">
</form>
and make any style you want to make on
http://css3buttongenerator.com
The Type attribute must be set to "BUTTON", which defines it as a clickable button on the web page. The Value attribute sets the text displayed on the button itself. The Onclick attribute sets the action performed when the button is clicked. In this case, we want the button click to open the page defined after the "window.location.href=" code. The web page address must be contained within single quotes as well.