Use on the webTotal Use [ 4622 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/dfd3f2b8fb18b3e28c21d9656a3a4807?family=Grenale+W01+Norm+Heavy+Italic" 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/dfd3f2b8fb18b3e28c21d9656a3a4807?family=Grenale+W01+Norm+Heavy+Italic);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Grenale W01 Norm Heavy Italic";
src: url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.eot");
src: url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/dfd3f2b8fb18b3e28c21d9656a3a4807.svg#Grenale W01 Norm Heavy Italic")format("svg");
}
2CSS rules to specify fonts
font-family: "Grenale W01 Norm Heavy Italic";