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