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