+ 1
Can we change font style in HTML without the use of CSS?
5 Respostas
+ 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