Arial Narrow CSS Guide

Complete guide to using Arial Narrow on the web with CSS.

Basic CSS Usage

.text-arial-narrow {
  font-family: 'Arial Narrow', Arial, sans-serif;
}

.text-arial-narrow-bold {
  font-family: 'Arial Narrow Bold', 'Arial Narrow', Arial, sans-serif;
  font-weight: 700;
}

@font-face Implementation

@font-face {
  font-family: 'Arial Narrow';
  src: url('/fonts/ArialNarrow.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arial Narrow';
  src: url('/fonts/ArialNarrow-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

Important

Ensure you have a proper web font license from Monotype before using Arial Narrow on the web.