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