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