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