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