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