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