0
What should I use for strong tag???
<______>important <_______> <_________> subscripted</______>
2 Respuestas
0
Standard text formatting includes the use of:
<b> <i> <u> <strong> <em> <sup> <sub> <s> <strike>
'Strong' is the more "formal" type of bold-tags, and is the tag referenced in newer HTML Specifications; you can still use the <b> tag, but you'll want to be up to date. I use the older tags due to familiarity, it's your choice.
"important"? Use <b>Important</b>
"subscripted"? Use <sub>Subscripted</sub>
0
Thanks for helping me