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