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