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