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