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