Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 7: Facilitating User Interaction with HTML Forms!

Instruction

Setting Tab Order with tabindex

The tabindex attribute customizes the order in which controls receive focus when the user navigates using the Tab key.

Usage Example for tabindex

<form id="contact-form">
    <label for="name">Name:</label>
    <input type="text" id="name" name="name" tabindex="1"><br>
    <label for="email">Email:</label>
    <input type="email" id="email" name="email" tabindex="2"><...