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