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