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