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