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