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