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