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