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