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