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