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