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