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