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