+ 4
How can i add a link for a button ( for example) and go todo the main page of muy web?
como puedo agregar un link a mi menĂș para que redirecciĂłne donde yo quiero?
4 Answers
+ 7
The main page (Home) should be named 'index.html'. To link to it:
<a href="index.html">Home</a>
You can style it to look like a button using CSS.
+ 1
<form action="link" >
<input type="button" value="GoTo"/>
</form>
0
<a href="(your link here)"><button></button></a >
0
is it the same if i want add other page?