Use on the webTotal Use [ 6772 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d1983e82bf7b7b4d652c72aeee4b757b?family=Granolae+Heavy" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/d1983e82bf7b7b4d652c72aeee4b757b?family=Granolae+Heavy);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Granolae Heavy";
src: url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.eot");
src: url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d1983e82bf7b7b4d652c72aeee4b757b.svg#Granolae Heavy")format("svg");
}
2CSS rules to specify fonts
font-family: "Granolae Heavy";