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