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