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