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