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