HTML interesse |
|
Heb 3 buttons die naar andere pagina's binnen de website verwijzen. Nu wil ik die graag naast elkaar hebben. Ze komen met deze code onder elkaar.
<form action="info.html"><input type="submit" value="INFORMATIE" style="margin-left:10px"></form>
<form action="home.html"><input type="submit" value="MENU" style="margin-left:10px"></form>
<form action="indexa.html"><input type="submit" value="VOLGENDE"></form>
<form action="info.html"><input type="submit" value="INFORMATIE" style="margin-left:10px"></form> <form action="home.html"><input type="submit" value="MENU" style="margin-left:10px"></form> <form action="indexa.html"><input type="submit" value="VOLGENDE"></form>
Ik krijg het wel voor elkaar als ik deze code doe
<form action="info.html"><input type="submit" value="INFORMATIE" style="margin-left:10px">
<form action="home.html"><input type="submit" value="MENU" style="margin-left:10px">
<form action="indexa.html"><input type="submit" value="VOLGENDE"></form></form</form>
<form action="info.html"><input type="submit" value="INFORMATIE" style="margin-left:10px"> <form action="home.html"><input type="submit" value="MENU" style="margin-left:10px"> <form action="indexa.html"><input type="submit" value="VOLGENDE"></form></form</form>
maar dan pakt hij van de info.html en home.html niet maar gaat hij bij alle 3 naar indexa.html. Met een div lukt het me ook niet. Wie weet een andere oplossing?
|