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