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