2018-10-10, 00:16:06
Again, a button has no attribute 'action' and no 'href': https://www.w3schools.com/tags/tag_button.asp. Use an <a> in a wrapper (the wrapper accepts html as content and use single quotes instead double quotes) which you style to look like a button: <a href='http://your-url.com' class='button'>Go!</a>
Code:
.button {
display: block;
width: 115px;
height: 25px;
background: #4E9CAF;
padding: 10px;
text-align: center;
border-radius: 5px;
color: white;
font-weight: bold;
}