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