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