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