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