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