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