CSS Google skrifttype

Google Fonts

Hvis du ikke ønsker at bruge nogen af de standard skrifttyper i HTML, kan du bruge Google Fonts API til at tilføje hundreder af andre skrifttyper til siden.

Kun skal du tilføje et stilark link og referere til den skrifttypefamilie, du har valgt:

eksempel

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
<style>
body {
  font-family: "Sofia";
  font-size: 22px;
}
</style>
</head>
<body>
<h1>Sofia Font</h1>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</p>
</body>
</html>

Prøv det selv