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