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