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