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