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