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