Typeface
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://fontfyi.com/iframe/glossary/typeface/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://fontfyi.com/glossary/typeface/
Add a dynamic SVG badge to your README or docs.
[](https://fontfyi.com/glossary/typeface/)
Use the native HTML custom element.
The overall design of a set of characters — the artistic creation. Often confused with 'font', which is a specific size/weight/style of a typeface.
A typeface is the overall design system for a set of characters — the artistic and conceptual creation that defines the visual form of letters, numbers, punctuation, and symbols as a unified whole. When you refer to 'Helvetica', 'Garamond', or 'Inter' as a design, you're talking about the typeface.
The distinction between typeface and font is frequently confused, including in everyday designer conversation and even in CSS property names. The CSS property font-family is named from the font perspective, but what you're actually selecting is a typeface family. In strict typographic language: a typeface is the design; a font is the specific physical (historically metal) or digital implementation at a particular size and style.
/* 'Inter' is the typeface. These are the fonts within it: */
.inter-regular {
font-family: 'Inter', sans-serif;
font-weight: 400; /* Inter Regular — a specific font */
}
.inter-bold {
font-family: 'Inter', sans-serif;
font-weight: 700; /* Inter Bold — a different font */
}
.inter-italic-medium {
font-family: 'Inter', sans-serif;
font-weight: 500;
font-style: italic; /* Inter Medium Italic — yet another font */
}
A typeface family typically includes multiple coordinated fonts: different weights (Thin, Light, Regular, Medium, SemiBold, Bold, ExtraBold, Black), different widths (Condensed, Normal, Extended), and different styles (Roman, Italic). Variable fonts collapse all of these variations into a single file, making the font/typeface distinction feel more conceptual than practical.
When selecting typefaces for a project, the decision goes beyond aesthetics. A typeface is a system — you're choosing not just what the 'A' looks like, but how the entire language's alphabet will render across sizes, weights, and contexts. A well-designed typeface family like Inter has carefully considered how all its members work together, and how each member works across the full range of UI scales from 11px labels to 72px heroes.
Evaluating a typeface means examining the full breadth of its character set, not just the default lowercase. Check the numbers (are they oldstyle or lining?), the punctuation (does the em dash have appropriate visual weight?), the diacritics (does the á maintain the same quality as the 'a'?), and the italic (is it a true italic or simply a slanted roman?). A typeface that excels across all these dimensions is ready for production; one that cuts corners in the details will show its weaknesses at scale.
관련 용어
이 개념을 보여주는 폰트
더 알아보기
모든 Google Fonts는 SIL Open Font License에 따라 상업적 이용이 무료입니다. 전문적인 상업 프로젝트에 가장 좋은 폰트를 소개합니다.
폰트 리뷰로고 폰트는 누군가 글을 읽기도 전에 브랜드 개성을 전달합니다. 로고, 워드마크, 브랜드 아이덴티티에 가장 좋은 Google Fonts입니다.
폰트 선택폰트 선택은 누군가 글을 읽기도 전에 브랜드 개성을 전달합니다. 브랜드 아이덴티티에 맞는 타이포그래피를 선택하는 전략적 프레임워크입니다.
타이포그래피 기초Typeface는 디자인 패밀리이고, Font는 그중 특정 인스턴스입니다. 이 구분은 라이선스, CSS, 디자이너와의 소통에서 중요합니다.