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