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