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