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