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