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