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