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