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