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