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