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