--- id: css-web-safe-fonts title: "CSS Web Safe Fonts" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["web safe fonts", "CSS web safe fonts", "universal fonts", "cross-browser fonts", "safe typefaces"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.88 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["css", "web", "frontend", "w3schools", "fonts", "typography"] raw_sources: ["https://www.w3schools.com/css/css_font_websafe.asp"] applied_in: [] github_commit: "" --- # [[CSS Web Safe Fonts]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) Web safe fonts are fonts universally installed across browsers and devices, but since none are 100% safe you should always declare backup (fallback) fonts in `font-family` and test across browsers before publishing. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Definition** β€” web safe fonts are fonts that are universally installed across all browsers and devices. [S1] - **No font is 100% safe** β€” there is always a chance that a font is not found or is not installed properly. [S1] - **Always use backups** β€” use backup (fallback) fonts in the `font-family` property. [S1] - **Test before publishing** β€” always check how fonts appear on different browsers and devices, and always use fallback fonts. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Fallback declaration** β€” pair a web safe font with safer alternatives and a generic family: `font-family: Tahoma, Verdana, sans-serif;`. [S1] - **Pick by generic family** β€” choose the web safe font from the family (sans-serif, serif, monospace, cursive) that matches the intended style. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) Web safe fonts are fonts that are universally installed across all browsers and devices. An important caveat is that there are no 100% completely web safe fonts β€” there is always a chance that a font is not found or is not installed properly β€” so the tutorial emphasizes using backup fonts in the `font-family` property. [S1] Fallback example: [S1] ```css p { font-family: Tahoma, Verdana, sans-serif; } ``` **Web safe fonts list** β€” nine recommended fonts with their generic families: [S1] | Font | Generic family | |---|---| | Arial | sans-serif | | Verdana | sans-serif | | Tahoma | sans-serif | | Trebuchet MS | sans-serif | | Times New Roman | serif | | Georgia | serif | | Garamond | serif | | Courier New | monospace | | Brush Script MT | cursive | **Font descriptions:** [S1] - **Arial** β€” the most widely used font for both online and printed media, and the default font in Google Docs. - **Verdana** β€” easily readable even for small font sizes. - **Tahoma** β€” has less space between the characters. - **Trebuchet MS** β€” designed by Microsoft in 1996; not supported by all mobile operating systems. - **Times New Roman** β€” one of the most recognizable fonts in the world, used in many newspapers. - **Georgia** β€” an elegant serif font, very readable at different font sizes. - **Garamond** β€” a classical font used for many printed books, with a timeless look. - **Courier New** β€” the most widely used monospace serif font, the standard font for movie screenplays. - **Brush Script MT** β€” designed to mimic handwriting, but can be hard to read. **Recommendation:** Before you publish your website, always check how your fonts appear on different browsers and devices, and always use fallback fonts. [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) The page's example applies a Tahoma β†’ Verdana β†’ sans-serif fallback stack to paragraph text, demonstrating the recommended backup pattern. No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Web safe fallback stack (language: CSS): ```css p { font-family: Tahoma, Verdana, sans-serif; } ``` ## βš–οΈ 비ꡐ 및 선택 κΈ°μ€€ (Comparison & decision criteria) The nine web safe fonts span four generic families, guiding selection by style and constraint: sans-serif options (Arial, Verdana, Tahoma, Trebuchet MS) for modern readable text β€” though Trebuchet MS is not supported by all mobile operating systems; serif options (Times New Roman, Georgia, Garamond) for formal/print-like text; Courier New for monospace; and Brush Script MT for a handwriting look that may be hard to read. Because no font is 100% safe, the deciding rule is to always pair the chosen font with fallbacks and a generic family. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) No contradictions found in the source. ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual (μ‹€μ œ 적용 사둀 발견 μ‹œ applied/validated둜 승격 κ°€λŠ₯) - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.88 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[CSS Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[CSS Font Family]], [[CSS Font Fallbacks]], [[CSS Google Fonts]] - **μ°Έμ‘° λ§₯락:** Referenced when choosing typefaces that will render reliably across browsers and devices without web font loading. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” CSS Web Safe Fonts β€” https://www.w3schools.com/css/css_font_websafe.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "CSS Web Safe Fonts" page (Astra wiki-curation, P-Reinforce v3.1 format).