Home | Some Page | Contact
Remember the button that said Submit Query? It now says Send. We also now have a clear button.
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.
tabindex="1" tabindex="2" tabindex="3"
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.
Text field use: readonly="readonly“ Button disabled="disabled“