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