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