+ 1
Can we change font style in HTML without the use of CSS?
5 Answers
+ 6
Simple
In HTML đ
<p class="ob">This is Sololearn.</p>
And in the CSS
p.ob {
font-style: italic/oblique/normal ;
}
Whatever you want
For more info
https://www.sololearn.com/learn/CSS/1086/?ref=app
+ 3
In js use
p.style.fontStyle="italic";
0
I'm so confused đ. Have you a solution? In HTML precisely