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