0
1 . Make the text italic:
What is the answer lesson Font style And Question no 2
2 Respuestas
+ 2
Several options for making text italic:
<i>Your text</i>
<p><em>Your text</em></p>
<p style="font-style: italic;">Your text</p>
With CSS:
p {
font-style: italic;
}
https://www.sololearn.com/ru/compiler-playground/WtdO5I7gs7h7/?ref=app
0
1. go over the tutorial again
2. google
3. search discussion forum for similar questions
4. only then ask.