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