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