0
Which tag I must use to bold and italic statements? In python.
With tag
5 odpowiedzi
+ 6
<b></b> for bold tag
<I></i> for italic tag
+ 5
For making bold any text u have 2 tags use <b></b> or <strong></strong>
Both will make text bold and for italic use <i></i>.
+ 5
kabi B C ,
You can use,
<b></b> and <strong></strong> tags for bold statements...
<i></i> and <em></em> tags for italic statements
+ 2
<b>Hello</b> to make a text bold
<i>Hello</i> to give a text italic style
+ 2
In which language?