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