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