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