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