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