DAB268: Mehrere Buttons in einem Froumlar

Beitrag lesen

Hallo.

Ist es möglich, dies zu schrieben?

<form name="tablebutton">
<button name="button" type="button" onClick="top.location.href='C:'" style="height:30px; width:150px; background-image:url(test3/neu-3.gif); border:none 1px black; background-color:transparent;">
 <table><tr><td>
   <font class="button">Schubidu</font>
 </td></tr></table>
</button>
<button name="button" type="button" onClick="top.location.href='d:'" class="button">
 <table><tr><td>
   <font class="button">Salfu</font>
 </td></tr></table>
</button>
</form>

Oder müsste es so lauten?

<form name="tablebutton">
<button name="button" type="button" onClick="top.location.href='C:'" style="height:30px; width:150px; background-image:url(test3/neu-3.gif); border:none 1px black; background-color:transparent;">
 <table><tr><td>
   <font class="button">Schubidu</font>
 </td></tr></table>
</button>
</form>
<form name="tablebutton">
<button name="button" type="button" onClick="top.location.href='C:'" class="button">
 <table><tr><td>
   <font class="button">Schubidu</font>
 </td></tr></table>
</button>
</form>

MfG
DAB268