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