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