THE INDIA LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

W3.CSS Fonts


W3.CSS Fonts

With W3.CSS it is extremely easy to add fonts to a web page.

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

Example

<html>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
<style>
.w3-tangerine {
  font-family: 'Tangerine', serif;
}
</style>

<body>
  <p class="w3-tangerine">Making the Web Beautiful!</p>
</body>

</html>
Try It Yourself »

More Examples

Making the web!

Example

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

Font Effects

Making the web!

Example

<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&effect=brick-sign">
Try It Yourself »