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