<p>In questo form passando da un campo all'altro tramite il tasto tab le caselle riceveranno il focus nell'ordine stabilito dall'attributo tabindex.</p>
<form action="pagina.html" method="post">
<label for="nome">Inserisci il tuo nome</label>
<input type="text" name="nome" id="nome" tabindex="1"><br>
<label for="cognome">Inserisci il tuo cognome</label>
<input type="text" name="cognome" id="cognome" tabindex="5"><br>
<label for="titolo">Inserisci il tuo titolo di studio</label>
<input type="text" name="titolo" id="titolo" tabindex="3"><br>
<label for="titolo">Inserisci il tuo ultimo impiego</label>
<input type="text" name="impiego" id="impiego" tabindex="2"><br>
<label for="password">Inserisci la tua password</label>
<input type="password" name="password" id="password" tabindex="4">
</form>