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