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