Google Fonts for Layouts - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Font

Description

Google Fonts for Layouts

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Tangerine"> 
  <style>
body {<!--from   www  . j  av a  2 s  . c  om-->
   font-family:'Tangerine', serif;
   font-size:49px;
}
</style> 
 </head> 
 <body> 
  <div>
    Lorem ipsum dolor sit amet, 
  </div>  
 </body>
</html>

Related Tutorials