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