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