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