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