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