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