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