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