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