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