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