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