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