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