+ 3
how can i use google front
3 ответов
+ 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
+ 2
Can you refine your question? What do you mean by "google front"?
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.