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