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