Home | Some Page | Contact

Sample form

Remember the button that said Submit Query? It now says Send. We also now have a clear button.

Personal Information First name:
Last name:
What is your state?

now if we wanted we could use Tab Order, which is used when skipping blocks of fields.
tabindex="1"
tabindex="2"
tabindex="3"

We would put the tabindex attribute in each input or selector field to control the order people could tab through our form.

Essential Information What did you eat?
Orange things
Green things
Brown things
White things

Which hand do you use?
Left
Right

We can also display information from a previous form or database entry as Readonly. We can also disable buttons with Disabled.
Text field use: readonly="readonly“
Button disabled="disabled“

Again, we would apply these attributes to the field(s) or button(s) as we need.

Comment