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