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