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