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