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