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