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