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