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