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