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