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