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