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