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