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