Frontend Developer Roadmap
Step 2 / 18120 min

CSS

Web Foundations

Explanation

CSS styles HTML with colors, typography, spacing, and layout so pages look polished and readable.

Code example

css
body {
  font-family: system-ui, sans-serif;
  line-height: 1.6;
  color: #0f172a;
  background: #f8fafc;
  margin: 0;
}

.hero {
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
}

.card {
  max-width: 40rem;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 10px 30px rgb(15 23 42 / 8%);
}

Helpful resources

Exercise

Style your HTML intro page with a color palette, typography scale, spacing system, and a styled card.