tabindex
The tabindex attribute allows developers to:
A positive value means the element should be focusable in sequential keyboard navigation, with its order defined by the value of the number. The maximum value for tabindex is 32767.
tabindex="0"
means that the element should be focusable in sequential keyboard navigation, after any positive tabindex values. The focus navigation order of these elements is defined by their order in the document source.
A negative value means that the element is not reachable via sequential keyboard navigation. JavaScript can be used to send focus to the element.