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