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