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