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