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