Is it mandatory to use H2 after h1 if text is too small then can we use h4 after h1 . and is it accessible ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Technically you can use any combination of those.
Semantically, it’s wise to use the common order. And if the font size is too small, use CSS to change that.
With the tags
h1–h6you give a semantic meaning to a title. Whereh1is for the top level,h2for a subdivision ofh1,h3for a subdivision ofh2etc.You can change the appearance by setting CSS rules, which is great because now you can separate content from layout.