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