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