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