---
title: font-family
slug: Web/CSS/@font-face/font-family
tags:
- '@font-face'
- アットルール記述子
- CSS
- CSS Descriptor
- CSS Fonts
- リファレンス
translation_of: Web/CSS/@font-face/font-family
---
{{CSSRef}}
`font-family` は CSS の記述子で、 {{cssxref("@font-face")}} 規則で指定されたフォントのフォントファミリーを指定することができます。
## 構文
/* <string> 値 */
font-family: "font family";
font-family: 'another font family';
/* <custom-ident> 値 */
font-family: examplefont;
値
- `<family-name>`
- : フォントファミリーの名前を指定します。
{{cssinfo}}
{{csssyntax}}
## 例
フォントファミリー名の設定
@font-face {
font-family: examplefont;
src: url('examplefont.ttf');
}
## 仕様書
仕様書 |
状態 |
備考 |
{{SpecName('CSS3 Fonts', '#font-family-desc', 'font-family')}} |
{{Spec2('CSS3 Fonts')}} |
初回定義 |
ブラウザーの互換性
{{Compat("css.at-rules.font-face.font-family")}}
## 関連情報
- {{cssxref("@font-face/font-display", "font-display")}}
- {{cssxref("@font-face/font-stretch", "font-stretch")}}
- {{cssxref("@font-face/font-style", "font-style")}}
- {{cssxref("@font-face/font-weight", "font-weight")}}
- {{cssxref("@font-face/font-variant", "font-variant")}}
- {{cssxref("font-feature-settings", "font-feature-settings")}}
- {{cssxref("@font-face/font-variation-settings", "font-variation-settings")}}
- {{cssxref("@font-face/src", "src")}}
- {{cssxref("@font-face/unicode-range", "unicode-range")}}