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