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