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