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