CSS Font Fallbacks


Obsah

    Zobrazit obsah


Běžně používané zálohy písem

Níže jsou uvedeny některé běžně používané záložní typy písem, uspořádané podle 5 obecných rodin písem:

Serif
Sans-serif
Monospace
Cursive
Fantasy
  • Serif

  • Bezpatkové

  • Monospace

  • Kurzívní

  • Fantazie


Patková písma

font-family Example text
"Times New Roman", Times, serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Times New Roman", Times, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Georgia, serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Georgia, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Garamond, serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Garamond, serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


Bezpatková písma

font-family Example text
Arial, Helvetica, sans-serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Tahoma, Verdana, sans-serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Tahoma, Verdana, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
"Trebuchet MS", Helvetica, sans-serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


font-family Example text
Geneva, Verdana, sans-serif

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Geneva, Verdana, sans-serif;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>




Jednoprostorová písma

font-family Example text
"Courier New", Courier, monospace

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Courier New", Courier, monospace;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


Kurzivní písma

font-family Example text
"Brush Script MT", cursive

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: "Brush Script MT", cursive;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


Fantasy Fonts

font-family Example text
Copperplate, Papyrus, fantasy

This is a Heading

This is a paragraph.

Zkus to

<!DOCTYPE html>
<html>
<head>
<style>
body {
  font-family: Copperplate, Papyrus, fantasy;
}
</style>
</head>
<body>

<h1>Lorem ipsum dolor sit amet</h1>

<p>Lorem ipsum dolor sit amet.</p>
<p>0 1 2 3 4 5 6 7 8 9</p>

</body>
</html>


Tip: Podívejte se také na všechna dostupná písma Google a na to, jak je používat.