Font-style part 1

CSS Fundamentals
Working with Text
font-style
33
1/2
         

The font-style Property



The font-style property is typically used to specify italic text.

The HTML:<p class="italic">This is a paragraph in italic style.</p>
The CSS:
p.italic {
font-style: italic;
}
Try It Yourself

Result:
Tap Try It Yourself to play around with the code!

Comments

Popular posts from this blog

font-family part 1