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