• Fonts

    • font-family (Defines the font style)
    • @font-face (Loads custom fonts)
    @font-face {
      font-family: 'Han Sans';
      src: url('/SourceHanSansSC-VF.otf.woff2');
    }
    
  • Text Styling

    • font-style (Italic, normal, oblique)
    • font-weight (Defines boldness)
    • font-size (Sets text size)
    • line-height (Controls vertical spacing between lines)
  • Text Alignment

    • text-align (Aligns text left, center, right)
  • Text Decoration

    • text-decoration (Underline, overline, line-through)
    • text-transform (Uppercase, lowercase, capitalize)
  • Text Spacing

    • letter-spacing (Adjusts space between characters)
    • word-spacing (Adjusts space between words)