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