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