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