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