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