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