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