--- 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")}} ## 関連情報