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