--- id: w3css-fonts title: "W3CSS Fonts" category: "Programming_Language" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["web safe fonts", "W3.CSS 폰트"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.88 created_at: 2026-07-04 updated_at: 2026-07-04 review_reason: "" merge_history: [] tags: ["w3css", "css-framework", "w3schools", "fonts", "typography"] raw_sources: ["https://www.w3schools.com/w3css/w3css_fonts.asp"] applied_in: [] github_commit: "" --- # [[W3CSS Fonts]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) W3.CSS uses TWO different default fonts, not one β€” Verdana for body text (better letter spacing, readable) but Segoe UI specifically for headings (narrower spacing, fits more characters) β€” meaning the "default font" question has different answers depending on whether you're styling body copy or a heading. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Default fonts** β€” Verdana (body), Segoe UI (headings, narrower spacing). [S1] - **Four built-in font classes** β€” `w3-serif`, `w3-sans-serif`, `w3-monospace`, `w3-cursive`. [S1] - **Web-safe sans-serif** β€” Arial (safest, 99.8%/98.7% Win/Mac), Helvetica (100% Mac, only 7.3% Windows), Verdana, Geneva, Tahoma, Trebuchet MS β€” each with a suggested fallback. [S1] - **Web-safe serif** β€” Times New Roman (with Times fallback), Georgia. [S1] - **Monospace** β€” Courier New (safest), Lucida Console (no Mac support) with Monaco as its cross-platform fallback. [S1] - **No universally safe handwriting font** β€” `w3-cursive` is the recommended fallback since none exists natively. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) - Global font override: `body, h1, h2, h3, h4, h5, h6 { font-family: Arial, Helvetica, sans-serif; }`. [S1] - Font class usage: `

...

`, `
...
`, `
...
`. [S1] - Cross-platform monospace fallback chain: `font-family: "Lucida Console", Monaco, monospace;` β€” Monaco fills in where Lucida Console (no Mac support) fails. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) - **λ³Έλ¬Έκ³Ό 제λͺ©μ˜ κΈ°λ³Έ ν°νŠΈκ°€ 닀름**: Verdana(λ³Έλ¬Έ)와 Segoe UI(제λͺ©)κ°€ μ„œλ‘œ λ‹€λ₯Έ λͺ©μ μœΌλ‘œ μ‚¬μš©λœλ‹€λŠ” 점이 강쑰됨. [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) ν˜„μž¬ 발견된 μ‹€μ œ 적용 사둀가 μ—†μŠ΅λ‹ˆλ‹€ β€” Lucida Console+Monaco 폴백 체인이 ν”Œλž«νΌ κ°„ monospace 폰트 ν˜Έν™˜μ„± ν™•λ³΄μ˜ λŒ€ν‘œ μ‹€μ „ 사둀닀. [S1] ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Cross-platform monospace font fallback (CSS): ```css body, h1, h2, h3, h4, h5, h6 { font-family: "Lucida Console", Monaco, monospace; } ``` ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.88 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[W3.CSS Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[W3CSS Defaults]], [[W3CSS Fonts Google]], [[W3CSS Text]] - **μ°Έμ‘° λ§₯락:** μ›Ή μ•ˆμ „ 폰트 μ‹œμŠ€ν…œ β€” ꡬ글 폰트(Fonts Google) μ±•ν„°λ‘œ 이어짐. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” W3.CSS Fonts β€” https://www.w3schools.com/w3css/w3css_fonts.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-07-04: Initial draft synthesized from the W3Schools "W3.CSS Fonts" page (Astra wiki-curation, P-Reinforce v3.1 format).