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