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