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