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