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