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