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