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