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