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