Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.CSS Google Fonts

With W3.CSS it is extremely easy to add new fonts.

  • Very easy to use (only CSS and HTML)
  • Unlimited use of external font libraries (Like Google Fonts)
  • Works in all modern browsers

This is Roboto

This is Sofia

Sofia on Fire

Making the Web!

Making the Web!

Making the Web!

Making the Web!

Making the Web!


Using Google Fonts

Google Fonts are free to use, and have more than 1000 fonts to choose from.

In the head of your web page, link to a Google font:

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">

Then add the CSS about where to use it:

body,h1,h2,h3,h4,h5,h6 {font-family: Roboto, sans-serif;}
Try It Yourself »

Another Example

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">
body,h1,h2,h3,h4,h5,h6 {font-family: Sofia, serif;}
Try It Yourself »

Create a Font Class

In the head of your web page, link to a Google font:

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Sofia">

Then create a font class:

Example

.w3-sofia {
  font-family: Sofia, cursive;
}

In your web page, use the font class:

Example

<p class="w3-sofia">Making the Web!</p>
Try It Yourself »
Making the Web!

Example

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
.w3-tangerine {
  font-family: 'Tangerine', serif;
}
<p class="w3-tangerine">Making the Web Beautiful!</p>
Try It Yourself »
Making the Web!

Example

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster">
Try It Yourself »
Making the Web!

Example

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster&effect=shadow-multiple">
Try It Yourself »
Making the Web!

Example

<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Allerta+Stencil">
Try It Yourself »
Making the Web!


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.