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