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