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