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