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