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