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