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