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