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