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