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