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