Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.

Well done!

You have completed (UPI) Chapter 3: Web Design with Cascading Style Sheets (CSS)!

Instruction

Properties for Styling Fonts

CSS provides several properties to style fonts, such as making text bold, italicized, or setting line spacing. These properties are inherited by child elements, making it easy to apply consistent styling across a webpage.

  1. font-style: Determines the slant of the text.
    • Values: normal, italic, oblique

Example:
css

font-style: italic;

  • **...