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