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