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