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