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