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