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