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