Γράμματα του Google στο CSS

Google Fonts

If you do not want to use any standard fonts in HTML, you can add hundreds of other fonts to the page using the Google Fonts API.

Only add a stylesheet link and reference the font family you choose:

Παράδειγμα

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

Δοκιμάστε το Εκπρόσωπο