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