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