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