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