
- HTML Tutorial
- HTML - Home
- HTML - Overview
- HTML - Basic Tags
- HTML - Elements
- HTML - Attributes
- HTML - Formatting
- HTML - Phrase Tags
- HTML - Meta Tags
- HTML - Comments
- HTML - Images
- HTML - Tables
- HTML - Lists
- HTML - Text Links
- HTML - Image Links
- HTML - Email Links
- HTML - Frames
- HTML - Iframes
- HTML - Blocks
- HTML - Backgrounds
- HTML - Colors
- HTML - Fonts
- HTML - Forms
- HTML - Embed Multimedia
- HTML - Marquees
- HTML - Header
- HTML - Style Sheet
- HTML - Javascript
- HTML - Layouts
- HTML References
- HTML - Tags Reference
- HTML - Attributes Reference
- HTML - Events Reference
- HTML - Fonts Reference
- HTML - ASCII Codes
- ASCII Table Lookup
- HTML - Color Names
- HTML - Entities
- HTML - Fonts Ref
- HTML - Events Ref
- MIME Media Types
- HTML - URL Encoding
- Language ISO Codes
- HTML - Character Encodings
- HTML - Deprecated Tags
How to specify the usage of an element using the tabbing order (tab keyboard button) in HTML?
Use the tabindex attribute in HTML to set the tabbing order of an element. It gives you the authority to change the order of your TAB usage on the keyboard.
You can try to run the following code to create tabbing order of an element in HTML −
Example
<!DOCTYPE html> <html> <body> <a href = "https://www.tutorialspoint.com/current_affairs/index.htm" tabindex="1">Current Affairs</a> <br> <a href = "https://www.tutorialspoint.com/codingground.htm" tabindex="2">Coding Ground</a> <br> <a href = "https://www.tutorialspoint.com/verbal_ability/index.htm" tabindex="4">Verbal Ability</a> <br> <a href = "https://www.tutorialspoint.com/quantitative_aptitude/index.htm" tabindex="3">Quantitative Aptitude</a> <br> <p>We have changed the tab order above. Use TAB on keyboard to view the changes.</p> </body> </html>
- Related Articles
- How to create the tabbing order of an element in HTML?
- How to specify the type of box used for an HTML element using CSS?
- How to specify a unique id for an element in HTML?
- How to specify the language of the element's content in HTML?
- How to specify whether the content of an element should be translated or not in HTML?
- How to specify that the element is read-only in HTML?
- How to specify that an element is not yet relevant in HTML?
- How to specify that an element should be pre-selected when the page loads in HTML?
- How to specify whether the or the element should have autocomplete enabled in HTML?
- How to set the tab order in a Tkinter application?
- How to trigger the HTML button after hitting enter button in the textbox using JavaScript?
- How to remove all the attributes of an HTML element using jQuery?
- How to specify tab location to make it visible in the bottom with Java?
- How to specify that the element should automatically get focus when the page loads in HTML?
- How to specify that the element must be filled out before submitting the form in HTML?

Advertisements