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