1For button redirection you can use below code:
2
3Using these two type <button> and <input> tag:
4
5<a href="http://www.google.com/">
6 <button>Visit Google</button>
7</a>
8
9or:
10
11<a href="http://www.google.com/">
12 <input type="button" value="Visit Google" />
13</a>
14
15<!--
16I hope it will help you.
17Namaste
18-->