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