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