how can i use google front | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

how can i use google front

14th Aug 2017, 4:38 PM
souvik
souvik - avatar
3 Answers
+ 14
If you're talking about Google fonts, All you have to do is add a special stylesheet link to your HTML document, then refer to the font in a CSS style. A Quick Example : <html>   <head>     <link rel="stylesheet"           href="https://fonts.googleapis.com/css?family=Tangerine">     <style>       body {         font-family: 'Tangerine', serif;         font-size: 48px;       }     </style>   </head>   <body>     <div>Making the Web Beautiful!</div>   </body> </html> Find out more... https://developers.google.com/fonts/docs/getting_started
14th Aug 2017, 4:55 PM
Dev
Dev - avatar
+ 2
Can you refine your question? What do you mean by "google front"?
14th Aug 2017, 4:52 PM
S C
0
Just go to the Google Fonts page and select a font. Maximize the window that appears on the bottom-right corner. There, Google gives you two choices to link the selected font to your website: By using the <link> tag in the HTML document or by using @import in the CSS. They also define code for implementation the font.
14th Aug 2017, 7:03 PM
Erik Johanson
Erik Johanson - avatar