Mist!
<label for="zuname">Nachname:</label> <input type="text" name="nachname" id="nachname" maxlength="40"> <br> <label for="zuname">Vorname:</label> <input type="text" name="vorname" id="vorname" maxlength="40"> <br> <label for="sendbutton"></label> <button id="sendbutton">senden</button>
Besser:
<label for="nachname">Nachname:</label>
<input type="text" name="nachname" id="nachname" maxlength="40">
<br>
<label for="vorname">Vorname:</label>
<input type="text" name="vorname" id="vorname" maxlength="40">
<br>
<label for="sendbutton"></label>
<button id="sendbutton">senden</button>
(Eines der „for“-Attribute hatte den falschen Wert.)
Edit Rolf B: Nein, zwei. Ich habe das zweite mal korrigiert.