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