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