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