SyntaxStudy
Sign Up
CSS Beginner 1 min read

CSS Text & Fonts

CSS Text & Fonts

Font Properties

PropertyValues
font-familyFont names, with fallbacks
font-size16px, 1rem, 1.2em
font-weightnormal, bold, 100900
font-stylenormal, italic

Text Properties

PropertyValues
text-alignleft, center, right, justify
text-decorationnone, underline, line-through
line-height1.5, 24px
letter-spacing1px, 0.05em
text-transformuppercase, lowercase, capitalize

Google Fonts

Import free fonts from Google Fonts with a <link> tag in your HTML head.

Example
body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #111827;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}

.muted {
  color: #6b7280;
  font-size: 0.875rem;
}

a {
  text-decoration: none;
  color: #6366f1;
}