Skip to main content

Inserting Tab Index

In this page, you will know what is a tab index, what is it for, and how to isert it on your web page.


What is a tab index?

Tab index is one of the attributes of a link tag.
Its function is to organize link navigation through its ordinality.
This attribute is useful if you are navigating inside a web page by the tab key.
This is the code for the tab index attribute:
<a href="***" tabindex="@@@">###</a>



Sample Tab Index


Most common visited websites in the Philippines:
Youtube
Code: <a href="http://www.youtube.com" tabindex="4">Youtube</a>
Instagram
Code: <a href="http://www.instagram.com" tabindex="3">Instagram</a>
Google
Code: <a href="http://www.google.com" tabindex="5">Google</a>
Twitter
Code: <a href="http://www.twitter.com" tabindex="2">Twitter</a>
Facebook
Code: <a href="http://www.facebook.com" tabindex="1">Facebook</a>



Try It

If you want to try what you have learned in this page, open a notepad and perform them.




Back to home
back to top


© CopyrightMMK 2017