--- id: css-google-fonts title: "CSS Google Fonts" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["Google Fonts", "CSS Google Fonts", "web fonts", "font effects", "fonts.googleapis.com"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.87 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["css", "web", "frontend", "w3schools", "fonts", "google-fonts"] raw_sources: ["https://www.w3schools.com/css/css_font_google.asp"] applied_in: [] github_commit: "" --- # [[CSS Google Fonts]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) Google Fonts provides over 1000 free fonts you can use by adding a `` to `fonts.googleapis.com` in the `` and referencing the font in CSS; multiple fonts are pipe-separated and special `&effect=` parameters apply decorative effects. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **What it is** β€” Google Fonts offers over 1000 free fonts through Google's font service, as an alternative to standard HTML fonts. [S1] - **Two steps** β€” add a `` in the `` section, then reference the font in CSS via `font-family`. [S1] - **Multiple fonts** β€” separate multiple font names in the link URL with the pipe character (`|`). [S1] - **Font effects** β€” add `&effect=effectname` to the URL and apply the class `font-effect-effectname` to the element. [S1] - **Always use fallbacks** β€” include a fallback font (serif or sans-serif) to avoid unexpected behavior. [S1] - **Performance** β€” using multiple fonts may slow page load performance. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Link + reference** β€” one `` per font set, then `font-family: "Name", generic;` in CSS. [S1] - **Pipe for many** β€” `?family=Audiowide|Sofia|Trirong` loads several fonts in one request. [S1] - **Effect class pairing** β€” URL `&effect=fire` pairs with HTML class `font-effect-fire`. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) Google Fonts lets you use over 1000 free fonts through Google's font service as an alternative to standard HTML fonts. To use Google Fonts, add a link in the `` section and reference it in CSS. [S1] ```html ``` Then apply it via `font-family: "Sofia", sans-serif;`. [S1] **Sofia font example:** [S1] ```html ``` **Trirong font example:** [S1] ```html ``` **Audiowide font example:** [S1] ```html ``` **Multiple fonts** β€” separate font names with the pipe character (`|`): [S1] ```html ``` **Font effects** β€” add `&effect=effectname` to the URL and apply the class `font-effect-effectname`: [S1] ```html

Sofia on Fire

``` Multiple effects use pipe separation: `&effect=neon|outline|emboss|shadow-multiple`. [S1] **Notes** [S1] - Always include fallback fonts (serif or sans-serif) to avoid unexpected behavior. - Using multiple fonts may slow page load performance. ## πŸ› οΈ 적용 사둀 (Applied in summary) The page's examples apply Sofia, Trirong, and Audiowide to the `body`, load all three in one pipe-separated link, and demonstrate the `fire` effect on an `h1`. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Link + reference pattern (language: HTML/CSS): ```html ``` Effect pattern: ```html

Sofia on Fire

``` ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) No contradictions found in the source. ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual (μ‹€μ œ 적용 사둀 발견 μ‹œ applied/validated둜 승격 κ°€λŠ₯) - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.87 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[CSS Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[CSS Font Family]], [[CSS Web Safe Fonts]], [[CSS Font Pairings]] - **μ°Έμ‘° λ§₯락:** Referenced when loading custom web fonts beyond the standard web safe set, or adding decorative font effects. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Google Fonts β€” https://www.w3schools.com/css/css_font_google.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Google Fonts" page (Astra wiki-curation, P-Reinforce v3.1 format).