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