+ 1
What is the function of this link in a code <link href="https://fonts.googleapis.com/css?family=Handlee" rel="stylesheet">
Tell me what is it function
1 Resposta
+ 1
Its function is to be able to use a font family on your website, with the vein that any user can see the font they are using without the need to download it, in that link the font font family of "Handlee" is used and from CSS can use that font in the text you want
Example:
h1 {
font-family: 'Handlee';
}