Foundation sets readable defaults on headings, paragraphs, and lists—then exposes helper classes for marketing copy hierarchy without custom CSS on every page.
Common type helpers
h1–h6— semantic heading sizes (can apply to non-heading elements sparingly)lead— emphasized intro paragraphsubheader— de-emphasized supporting line under titlestext-center,text-right,text-justify— alignmenttext-uppercase,text-lowercase,text-capitalize
Pair with HTML text content semantics: one h1 per view, logical heading order, and helpers only when design needs a visual tweak.
Self-check
- When is
leadappropriate? - Why keep real heading tags instead of only styling
divelements?