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