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