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