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