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