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