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