Nastavení fontu
<span style="font-family: Arial, sans-serif">Text arialem</span>
nebo použití na odstavec:
<p style="font-family: Arial, sans-serif">Odstavec arialem</span>
dá se použít na každý tag, třeba i na body:
<body style="font-family: Arial">
Lepší je to ale zapsat globálně stylem do hlavičky:
<style type="text/css">
body {font-family: Arial, sans-serif;}/* pro celý dokument /*
p {font-family: "Times New Roman", serif} /* pro všechny odstavce <p>*/
.trida {font-family: Verdana, sans-serif} /* pro všechny tagy s class="trida" */
</style>
Víceslovné názvy písem jsou v uvozovkách.
čerpáno z
Jak psat web