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