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