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