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