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