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