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