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