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