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.
相关术语
展示此概念的字体
了解更多
根据 SIL 开源字体授权协议,所有 Google Fonts 均可免费商用。以下是最适合专业商业项目的字体。
字体评测在任何文字被阅读之前,你的 logo 字体就已传达了品牌个性。最适合 logo、文字标志和品牌形象的 Google Fonts。
字体选择字体选择在任何文字被阅读之前就传达了品牌个性。一套用于选择匹配品牌形象的排版的策略框架。
排版基础Typeface 是设计家族,font 是具体实例。这一区别对授权、CSS 以及与设计师的沟通都很重要。