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