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