HTML & CSS Masterclass Tutorial

Comprehensive guide to modern HTML and CSS development.

Typography

Typography

CSS provides immense control over text appearance.

  • font-family: Sets the typeface (e.g., Arial, Times New Roman, or custom Google Fonts). Always provide fallback fonts.
  • font-size: Can be set in px, em, rem, or vw. (rem is highly recommended for accessibility).
  • font-weight: How thick the text is (normal, bold, 100-900).
  • line-height: The vertical space between lines of text.
  • text-align: left, right, center, or justify.
  • text-transform: uppercase, lowercase, capitalize.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics