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