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