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