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