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