0
How to make that when click on button take you to another page or send in html?
4 Réponses
+ 1
html:
<a href="anotherPage.html"> Text</a>
css:
a {
width: 300px;
height: 200px;
background-color: gray;
border: 1px solid black;
}
Something like this. Do some research and you will find a wider variety of styling
+ 1
Make a link and style it as a button
0
How
0
Use the href attribute in <a> tag and use css as:
a {
width:90%;
height:50lx;
background:royalblue;
text-decoration:none;
color:goldenrod;
text-align:center;
font-weight:bolder;
}
// you can copy the code and paste it on css slot