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