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