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