MyInternships.in

Typography

Font and Text Size

Typography utilities control font size, weight, family and more. Sizes run from text-xs up to text-9xl, and each size ships with a sensible line-height.


Size and weight

ClassFont size
text-sm0.875rem
text-base1rem
text-lg1.125rem
text-xl1.25rem
text-2xl1.5rem
text-4xl2.25rem
A heading and body with sizes and weights
Example
<div>
  <h1 class="text-3xl font-extrabold text-gray-900">Hire interns fast</h1>
  <p class="text-base font-normal text-gray-600 mt-1">Verified candidates, AI-ranked.</p>
  <p class="text-sm font-medium text-sky-600 mt-2">Learn more →</p>
</div>

Font weight and family

font-light, font-normal, font-medium, font-semibold, font-bold and font-extrabold set weight. font-sans, font-serif and font-mono switch the family.

Weights and a mono font
Example
<div class="space-y-1">
  <p class="font-light">Light</p>
  <p class="font-semibold">Semibold</p>
  <p class="font-mono">const x = 1 // mono</p>
</div>

Related Tailwind Topics

Keep learning with these closely related lessons.