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