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