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