In my form I have 3 styles of text: styleA (size 16 and bold, more like a header) styleB (size 16, normal weight, the normal text) and styleC (size 14 and italic, a note at the end).
Should styleA and styleB use <h?>
tags and styleC use a <p>
tag? Or should styleA use an <h?>
tag, styleB use a <p>
tag, and styleC use a <small>
tag? Or is there some other combination I should use?
I'm trying to figure out what the accepted norm is in a situation like this so that I use the correct html in this case and in future, similar cases.
Thank you!
Edit: Just to clarify, all this text will be in a form in an (AJAX) pop-up window. All the text will be within a <form>
tag. Therefore, I'd prefer to avoid any body/div tags.