Font-style part 2


font-style
33
2/2












The font-style Property
The font-style property has three values: normal, italic, and oblique.
Oblique is very similar to italic, but less supported.
The HTML:<p class="normal">This paragraph is normal.</p>
<p class="italic">This paragraph is italic.</p>
<p class="oblique">This paragraph is oblique.</p>
The CSS:
The HTML <i> tag will produce exactly the same result as the italic font style
Comments
Post a Comment