+ 2
How do you put the letter in italics?
4 Answers
+ 9
you must
html
<p class="italics">
write any thing you want
</p>
css
p.italic {
font-style: italic;
}
đđ
+ 4
To italicize characters, you must use the <i> tag.
+ 3
<span style="font-style: italic">some text... </span>