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