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