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