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