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