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