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