CSS Font Fallbacks


Indholdsfortegnelse

    Vis indholdsfortegnelse


Almindelig anvendte skrifttype-tilbagegange

Nedenfor er nogle almindeligt anvendte skrifttyper, organiseret af de 5 generiske skrifttypefamilier:

Serif
Sans-serif
Monospace
Cursive
Fantasy
  • Serif

  • Sans-serif

  • Monospace

  • Kursiv

  • Fantasi


Serif skrifttyper

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

This is a Heading

This is a paragraph.

Prøv det

<!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.

Prøv det

<!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.

Prøv det

<!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>


Sans-Serif skrifttyper

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

This is a Heading

This is a paragraph.

Prøv det

<!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.

Prøv det

<!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.

Prøv det

<!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.

Prøv det

<!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>




Monospace skrifttyper

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

This is a Heading

This is a paragraph.

Prøv det

<!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>


Kursive skrifttyper

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

This is a Heading

This is a paragraph.

Prøv det

<!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 skrifttyper

font-family Example text
Copperplate, Papyrus, fantasy

This is a Heading

This is a paragraph.

Prøv det

<!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: Se også alle tilgængelige Google-skrifttyper, og hvordan du bruger dem.