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