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