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