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