Ustalenie czcionki

<style type="text/css">
<!--
p.arial     {font-family:Arial, sans-serif}         /* składnia z podaniem     */
p.times     {font-family:"Times New Roman", serif}  /* wartości atrybutu class */
p.monospace {font-family:monospace}
-->
</style>

Ten akapit należy do klasy arial, czcionka Arial. {font-family:Arial, sans-serif}

Ten akapit należy do klasy times, czcionka "Times New Roman". {font-family:"Times New Roman", serif}

Ten akapit należy do klasy monospace, czcionka typu monospace. {font-family:monospace}

Uwagi

Dla cechy font-family można określić kilka wartości. Zaleca się, aby jako ostatnią wartość podać ogólny typ czcionki.

Ogólne typy czcionek

serif       np. Times
sans-serif  np. Helvetica
cursive     np. Zapf-Chancery
fantasy     np. Western
monospace   np. Courier

Opis cechy font-family:

5.2.2 'font-family'
Value: [[<family-name> | <generic-family>],]* [<family-name> | <generic-family>]
Initial: UA specific
Applies to: all elements
Inherited: yes
Percentage values: N/A

Zobacz też:

5.1 Notation for property values

Strona główna