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