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