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