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