+ 1
what is tag used to write bold and italic style text??
like a single text has to be in bold not separately bold and italic
6 odpowiedzi
+ 2
HTML 5 I think now recommends the use of <strong> to make something "bold". As Billy says below <em> is for italicized (emphasized) text.
+ 1
For bold use <b>my bold text</b>
For italic use <i>my italic text</i>
You can also combine both kind of tags nesting them as follows <b><i>my bold AND italic text</i></b>.
You can find this info in the "Glossary" section of this app.
+ 1
Billy is correct. em is for emphasized or italic text. google it to see. i took a screen shot but we can't post those in q&a unfortunately
+ 1
using <b></b> for bold and <i></i> for italic , is old fashion ... <em> for emphasized(italic) text and <strong> for bold text are more suitable
0
i think <em> is for italic cmiiw
0
Use strong for bold and em for italic. This allows your page to be easily viewed on mobile devices.
do not use b or i, don't make it a bad habit.